Skip to content

Commit

Permalink
bin: fix ck8s ops commands after changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-elastisys committed Dec 23, 2024
1 parent ff9ebac commit 2a998a1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/ck8s
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,10 @@ ops)
case "${2}" in
kubectl | kubecolor | helm | helmfile | velero)
[[ "${3}" =~ ^(wc|sc)$ ]] || usage
shift 2
"${here}/ops.bash" "${2}" "${@}"
command="${2}"
cluster="${3}"
shift 3
"${here}/ops.bash" "${command}" "${cluster}" "${@}"
;;
*) usage ;;
esac
Expand Down

0 comments on commit 2a998a1

Please sign in to comment.