mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 20:24:09 +00:00
Disble cgroups-per-qos pending Burstable/cpu.shares being set
This commit is contained in:
parent
6edd079024
commit
36f4256afd
@ -392,7 +392,10 @@ func SetDefaults_KubeletConfiguration(obj *KubeletConfiguration) {
|
||||
obj.IPTablesDropBit = &temp
|
||||
}
|
||||
if obj.CgroupsPerQOS == nil {
|
||||
temp := true
|
||||
// disabled pending merge of https://github.com/kubernetes/kubernetes/pull/41753
|
||||
// as enabling the new hierarchy without setting /Burstable/cpu.shares may cause
|
||||
// regression.
|
||||
temp := false
|
||||
obj.CgroupsPerQOS = &temp
|
||||
}
|
||||
if obj.CgroupDriver == "" {
|
||||
|
Loading…
Reference in New Issue
Block a user