Skip to content

Commit

Permalink
Fixing kubectl command syntax used in ekco-purge-node script
Browse files Browse the repository at this point in the history
  • Loading branch information
franklines committed Nov 10, 2020
1 parent a2a3614 commit a5a423c
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 a5a423c

Please sign in to comment.