Skip to content

Commit

Permalink
ci: disable addons after cluster creation
Browse files Browse the repository at this point in the history
It looks like disabling addson pre cluster
creation is not working, Moving the disable
addons to post cluster creation.

Signed-off-by: Madhu Rajanna <[email protected]>
  • Loading branch information
Madhu-1 committed Oct 9, 2023
1 parent cba5402 commit bf74104
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/minikube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,6 @@ up)
install_podman_wrapper
fi

disable_storage_addons

# get kubernetes version we are operating on and accordingly enable feature gates
KUBE_MAJOR=$(kube_version 1)
KUBE_MINOR=$(kube_version 2)
Expand All @@ -283,6 +281,7 @@ up)
if [[ "${VM_DRIVER}" = "podman" ]]; then
${minikube} ssh "sudo mount -oremount,rw /sys"
fi
disable_storage_addons
${minikube} kubectl -- cluster-info
;;
down)
Expand Down

0 comments on commit bf74104

Please sign in to comment.