5 lines
189 B
Bash
5 lines
189 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
kubectl -n infctl delete secrets redis-auth
|
||
|
|
|
||
|
|
kubectl get secret redis-auth -n redis -o yaml | sed "s/namespace: redis/namespace: infctl/" | kubectl apply -n infctl -f -
|