8 lines
262 B
Plaintext
8 lines
262 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
set -eu -o pipefail
|
||
|
|
|
||
|
|
ENV=$1 # stg or prd
|
||
|
|
KUBECONFIG=~/Downloads/$ENV-video-cluster-kubeconfig.yaml
|
||
|
|
|
||
|
|
kubectl --kubeconfig $KUBECONFIG --namespace webrtc-be get pod -o yaml | kubectl --kubeconfig $KUBECONFIG --namespace webrtc-be replace --force -f -
|