Skip to content

Commit

Permalink
Merge pull request #876 from franklines/fix-kubectl-ekco-purge-script
Browse files Browse the repository at this point in the history
Fixing kubectl command syntax used in ekco-purge-node script
  • Loading branch information
areed authored Nov 19, 2020
2 parents 268f273 + a5a423c commit e08132c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion addons/ekco/0.2.0/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.2.1/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.2.3/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.2.4/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.3.0/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.4.0/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.4.1/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.4.2/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.5.0/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.6.0/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@
2 changes: 1 addition & 1 deletion addons/ekco/0.7.0/ekco-purge-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ if [ -z "$pod" ]; then
exit 1
fi

kubectl exec -n "$namespace" -it "$pod" ekco -- purge-node $@
kubectl exec -n "$namespace" -it "$pod" -- ekco purge-node $@

0 comments on commit e08132c

Please sign in to comment.