mirror of https://github.com/k3s-io/k3s
Disable CRI in hollow-node
Some parts of the new dockershim are not properly mocked out in the hollow-node. Disabling CRI in the hollow node until a proper fix is put in.pull/6/head
parent
a197fbdf2d
commit
5e7972f423
|
@ -160,6 +160,8 @@ func GetHollowKubeletConfig(
|
|||
c.SerializeImagePulls = true
|
||||
c.SystemCgroups = ""
|
||||
c.ProtectKernelDefaults = false
|
||||
// TODO: This is a temporary workaround until we fix CRI+kubemark properly.
|
||||
c.EnableCRI = false
|
||||
|
||||
// TODO(mtaufen): Note that PodInfraContainerImage was being set to the empty value before,
|
||||
// but this may not have been intentional. (previous code (SimpleKubelet)
|
||||
|
|
Loading…
Reference in New Issue