Skip to content

Commit 4fbcdfc

Browse files
committed
reference follow up issue
1 parent 470e7b6 commit 4fbcdfc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/minikube/bootstrapper/bsutil/kubeadm.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ func GenerateKubeadmYAML(cc config.ClusterConfig, n config.Node, r cruntime.Mana
6969
return nil, errors.Wrap(err, "getting cgroup driver")
7070
}
7171
// TODO: investigate why containerd (v1.6.15) does not work with k8s (v1.25.3) when both are set to use systemd cgroup driver
72-
// for the time being, the workaround is to configure kubelet to use cgroupfs when containerd is using systemd
72+
// issue: https://github.com/kubernetes/minikube/issues/15633
73+
// until this is fixed, the workaround is to configure kubelet to use cgroupfs when containerd is using systemd
7374
// note: pkg/minikube/bootstrapper/bsutil/kubeadm_test.go::TestGenerateKubeadmYAML also extects this override (for now)
7475
if cc.KubernetesConfig.ContainerRuntime == constants.Containerd && cgroupDriver == constants.SystemdCgroupDriver {
7576
cgroupDriver = constants.CgroupfsCgroupDriver

0 commit comments

Comments
 (0)