Skip to content

Commit

Permalink
Fix minikube start cmd args
Browse files Browse the repository at this point in the history
Since minikube v0.33.0 the default CNI config is not being provisioned
by default (kubernetes/minikube#3441). Therefore,
we need to pass `--enable-default-cni` when starting minikube.
  • Loading branch information
brb committed Jan 24, 2019
1 parent 55b1009 commit 925a81a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _includes/scriptlets/get_kubevirt/start_minikube.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
minikube start \
--vm-driver kvm2 \
--network-plugin cni
--network-plugin cni \
--enable-default-cni

0 comments on commit 925a81a

Please sign in to comment.