Skip to content

Commit 148b222

Browse files
committed
kubeadm: Support >= 5.0 Linux Kernel
Signed-off-by: Martynas Pumputis <[email protected]>
1 parent 62ba022 commit 148b222

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)