We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff9ebac commit 2a998a1Copy full SHA for 2a998a1
bin/ck8s
@@ -96,8 +96,10 @@ ops)
96
case "${2}" in
97
kubectl | kubecolor | helm | helmfile | velero)
98
[[ "${3}" =~ ^(wc|sc)$ ]] || usage
99
- shift 2
100
- "${here}/ops.bash" "${2}" "${@}"
+ command="${2}"
+ cluster="${3}"
101
+ shift 3
102
+ "${here}/ops.bash" "${command}" "${cluster}" "${@}"
103
;;
104
*) usage ;;
105
esac
0 commit comments