Skip to content

Commit

Permalink
fix(minikube): disable embed certs
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveRuble committed Jan 23, 2020
1 parent 76a1412 commit 9e7975f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/kube/minikube.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ func (c MinikubeConfig) configureKubernetes(ctx ConfigureKubeContextRequest) err

ctx.Log.Info("minikube not running, starting minikube...")

pkg.NewShellExe("minikube config set embed-certs true").MustRun()
// this is disabled because of a bug in minikube:
// pkg.NewShellExe("minikube config set embed-certs true").MustRun()

if c.Driver == "none" {
cmd := pkg.NewShellExe("sudo",
Expand Down

0 comments on commit 9e7975f

Please sign in to comment.