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.
11 lines
290 B
11 lines
290 B
8 years ago
|
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' ' ')
|
||
|
}
|