kubeadm: Support >= 5.0 Linux Kernel

Signed-off-by: Martynas Pumputis <m@lambda.lt>
pull/564/head
Martynas Pumputis 2019-02-21 17:31:15 +01:00
parent 62ba022249
commit 148b222d97
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const dockerEndpoint = "unix:///var/run/docker.sock"
var DefaultSysSpec = SysSpec{ var DefaultSysSpec = SysSpec{
OS: "Linux", OS: "Linux",
KernelSpec: KernelSpec{ KernelSpec: KernelSpec{
Versions: []string{`3\.[1-9][0-9].*`, `4\..*`}, // Requires 3.10+ or 4+ Versions: []string{`3\.[1-9][0-9].*`, `4\..*`, `5\..*`}, // Requires 3.10+, 4+ or 5+
// TODO(random-liu): Add more config // TODO(random-liu): Add more config
// TODO(random-liu): Add description for each kernel configuration: // TODO(random-liu): Add description for each kernel configuration:
Required: []KernelConfig{ Required: []KernelConfig{