Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "kubelet Default-Start contains no runlevels" error #11815

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkg/minikube/sysinit/systemd.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ func (s *Systemd) Disable(svc string) error {

// DisableNow disables a service and stops it too (not waiting for next restart)
func (s *Systemd) DisableNow(svc string) error {
_, err := s.r.RunCmd(exec.Command("sudo", "systemctl", "disable", "--now", svc))
cmd := exec.Command("sudo", "systemctl", "disable", "--now", svc)
// See https://github.com/kubernetes/minikube/issues/11615#issuecomment-861794258
cmd.Env = append(cmd.Env, "SYSTEMCTL_SKIP_SYSV=1")
_, err := s.r.RunCmd(cmd)
return err
}

Expand Down