Skip to content

Commit 9dbc891

Browse files
authored
Merge pull request kubernetes#74355 from brb/kubeadm-support-kernel-5
kubeadm: Support >= 5.0 Linux kernel
2 parents f08b2b8 + 148b222 commit 9dbc891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/kubeadm/app/util/system/types_unix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const dockerEndpoint = "unix:///var/run/docker.sock"
3030
var DefaultSysSpec = SysSpec{
3131
OS: "Linux",
3232
KernelSpec: KernelSpec{
33-
Versions: []string{`3\.[1-9][0-9].*`, `4\..*`}, // Requires 3.10+ or 4+
33+
Versions: []string{`3\.[1-9][0-9].*`, `4\..*`, `5\..*`}, // Requires 3.10+, 4+ or 5+
3434
// TODO(random-liu): Add more config
3535
// TODO(random-liu): Add description for each kernel configuration:
3636
Required: []KernelConfig{

0 commit comments

Comments
 (0)