8 lines
124 B
Bash
8 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
podid=$(kubectl get pods | rg sanity | rg -v mesh | awk '{print $1}')
|
||
|
|
||
|
kubectl exec -it "$podid" -- sh
|