Skip to content

Commit 2189acd

Browse files
author
mdshuai
committedNov 15, 2016
[kubelet]update --cgroups-per-qos to --experimental-cgroups-per-qos
1 parent d8fa4f4 commit 2189acd

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ test-e2e: ginkgo generated_files
181181
# Example:
182182
# make test-e2e-node FOCUS=Kubelet SKIP=container
183183
# make test-e2e-node REMOTE=true DELETE_INSTANCES=true
184-
# make test-e2e-node TEST_ARGS="--cgroups-per-qos=true"
184+
# make test-e2e-node TEST_ARGS="--experimental-cgroups-per-qos=true"
185185
# Build and run tests.
186186
.PHONY: test-e2e-node
187187
test-e2e-node: ginkgo generated_files

‎docs/devel/e2e-node-tests.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ make test_e2e_node TEST_ARGS="--disable-kubenet=false" # disable kubenet
208208

209209
## Additional QoS Cgroups Hierarchy level testing
210210

211-
For testing with the QoS Cgroup Hierarchy enabled, you can pass --cgroups-per-qos flag as an argument into Ginkgo using TEST_ARGS
211+
For testing with the QoS Cgroup Hierarchy enabled, you can pass --experimental-cgroups-per-qos flag as an argument into Ginkgo using TEST_ARGS
212212

213213
```sh
214-
make test_e2e_node TEST_ARGS="--cgroups-per-qos=true"
214+
make test_e2e_node TEST_ARGS="--experimental-cgroups-per-qos=true"
215215
```
216216

217217
# Notes on tests run by the Kubernetes project during pre-, post- submit.

‎docs/proposals/pod-resource-management.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ $ROOT
341341
## Implementation Plan
342342

343343
The implementation plan is outlined in the next sections.
344-
We will have a 'cgroups-per-qos' flag to specify if the user wants to use the QoS based cgroup hierarchy. The flag would be set to false by default at least in v1.4.
344+
We will have a 'experimental-cgroups-per-qos' flag to specify if the user wants to use the QoS based cgroup hierarchy. The flag would be set to false by default at least in v1.5.
345345

346346
#### Top level Cgroups for QoS tiers
347347

‎hack/local-up-cluster.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ NET_PLUGIN_DIR=${NET_PLUGIN_DIR:-""}
3333
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
3434
SERVICE_CLUSTER_IP_RANGE=${SERVICE_CLUSTER_IP_RANGE:-10.0.0.0/24}
3535
# if enabled, must set CGROUP_ROOT
36-
CGROUPS_PER_QOS=${CGROUPS_PER_QOS:-false}
36+
EXPERIMENTAL_CGROUPS_PER_QOS=${EXPERIMENTAL_CGROUPS_PER_QOS:-false}
3737
# this is not defaulted to preserve backward compatibility.
38-
# if CGROUPS_PER_QOS is enabled, recommend setting to /
38+
# if EXPERIMENTAL_CGROUPS_PER_QOS is enabled, recommend setting to /
3939
CGROUP_ROOT=${CGROUP_ROOT:""}
4040
# name of the cgroup driver, i.e. cgroupfs or systemd
4141
CGROUP_DRIVER=${CGROUP_DRIVER:-""}
@@ -502,7 +502,7 @@ function start_kubelet {
502502
--feature-gates="${FEATURE_GATES}" \
503503
--cpu-cfs-quota=${CPU_CFS_QUOTA} \
504504
--enable-controller-attach-detach="${ENABLE_CONTROLLER_ATTACH_DETACH}" \
505-
--cgroups-per-qos=${CGROUPS_PER_QOS} \
505+
--experimental-cgroups-per-qos=${EXPERIMENTAL_CGROUPS_PER_QOS} \
506506
--cgroup-driver=${CGROUP_DRIVER} \
507507
--cgroup-root=${CGROUP_ROOT} \
508508
${auth_args} \

‎pkg/apis/componentconfig/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ type KubeletConfiguration struct {
307307
// +optional
308308
SystemCgroups string `json:"systemCgroups,omitempty"`
309309
// CgroupRoot is the root cgroup to use for pods.
310-
// If CgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.
310+
// If ExperimentalCgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.
311311
// +optional
312312
CgroupRoot string `json:"cgroupRoot,omitempty"`
313313
// containerRuntime is the container runtime to use.

‎pkg/generated/openapi/zz_generated.openapi.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2630,7 +2630,7 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{
26302630
},
26312631
"cgroupRoot": {
26322632
SchemaProps: spec.SchemaProps{
2633-
Description: "CgroupRoot is the root cgroup to use for pods. If CgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.",
2633+
Description: "CgroupRoot is the root cgroup to use for pods. If ExperimentalCgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.",
26342634
Type: []string{"string"},
26352635
Format: "",
26362636
},

‎pkg/kubelet/cm/container_manager_linux.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ func NewContainerManager(mountUtil mount.Interface, cadvisorInterface cadvisor.I
209209
if nodeConfig.CgroupsPerQOS {
210210
// this does default to / when enabled, but this tests against regressions.
211211
if nodeConfig.CgroupRoot == "" {
212-
return nil, fmt.Errorf("invalid configuration: cgroups-per-qos was specified and cgroup-root was not specified. To enable the QoS cgroup hierarchy you need to specify a valid cgroup-root")
212+
return nil, fmt.Errorf("invalid configuration: experimental-cgroups-per-qos was specified and cgroup-root was not specified. To enable the QoS cgroup hierarchy you need to specify a valid cgroup-root")
213213
}
214214

215215
// we need to check that the cgroup root actually exists for each subsystem

0 commit comments

Comments
 (0)
Please sign in to comment.