Skip to content

Commit

Permalink
feat: more parameters to lauch minikube
Browse files Browse the repository at this point in the history
  • Loading branch information
vicenteherrera committed Sep 3, 2023
1 parent 0c3a858 commit b85daca
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cluster/minikube/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
KUBERNETES_VER=1.28.0
CPUS=4
MEMORY=8g

DISK=20000mb
# See https://github.com/prometheus-operator/kube-prometheus

start:
minikube delete ||:
minikube start \
--kubernetes-version=v${KUBERNETES_VER}
--memory=${MEMORY} \
--cpus=${CPUS} \
--kubernetes-version="v${KUBERNETES_VER}" \
--memory="${MEMORY}" \
--cpus="${CPUS}" \
--disk-size="${DISK}" \
--bootstrapper=kubeadm \
--extra-config=kubelet.authentication-token-webhook=true \
--extra-config=kubelet.authorization-mode=Webhook \
Expand Down

0 comments on commit b85daca

Please sign in to comment.