11 lines
298 B
Bash
Executable File
11 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
set -eu -o pipefail
|
|
|
|
KUBECONFIG=~/Downloads/prd-video-cluster-kubeconfig.yaml
|
|
|
|
POD=`kubectl --kubeconfig $KUBECONFIG --namespace webrtc-be get pod --no-headers -o custom-columns=":metadata.name"`
|
|
|
|
kubectl --kubeconfig $KUBECONFIG exec $POD --namespace webrtc-be -- cat /proc/net/udp
|