1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prezto/k8s.env

11 lines
290 B

source <(kubectl completion zsh)
function kube-pod-restart {
SVC_TOKILL=$1
NAMESPACE="${2-default}"
if [ "$SVC_TOKILL" = "" ]; then exit 1; fi
kubectl delete po --namespace $NAMESPACE $(kubectl get po --namespace $NAMESPACE | grep $SVC_TOKILL | awk '{print $1}' | tr '\n' ' ')
}