Merge pull request #74355 from brb/kubeadm-support-kernel-5

kubeadm: Support >= 5.0 Linux kernel
pull/564/head
Kubernetes Prow Robot 2019-02-21 17:47:40 -08:00 committed by GitHub
commit 9dbc8912d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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{