mirror of https://github.com/k3s-io/k3s
kubeadm: Support >= 5.0 Linux Kernel
Signed-off-by: Martynas Pumputis <m@lambda.lt>pull/564/head
parent
62ba022249
commit
148b222d97
|
@ -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{
|
||||||
|
|
Loading…
Reference in New Issue