gavinzhou/ci-minikube

Command fails to start kubelet

celestialorb opened this issue · 2 comments

sudo -E minikube start --vm-driver=none --cpus 2 --memory 2048 --kubernetes-version=${K8S_VERSION} &> $HOME/minikube.log 2>&1 < /dev/null

While working on a CI workflow using Minikube myself I was unable to get my equivalent of this command to run successfully. It errors out with:

E0204 10:50:46.985278     134 start.go:302] Error updating cluster:  starting kubelet: running command: 

sudo systemctl daemon-reload &&

sudo systemctl enable kubelet &&

sudo systemctl start kubelet

: exit status 1

After debugging the job over SSH I believe it is because I cannot seem to access systemctl in CircleCI, even as the root user. Are you seeing this behavior as well?

you probably missed image: circleci/classic:201808-01 in your config

Closing this as it's old.