Merge pull request #1296 from yanxuean/qoscgroup

Automatic merge from submit-queue.

correct the arg of kubelet in test-e2e-node

Signed-off-by: yanxuean <yan.xuean@zte.com.cn>

The --experimental-cgroups-per-qos  is outdated.
The arg is renamed since 1.6.0.
See 1.6.0 changelog.

https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.6.md
Rename --experiemental-cgroups-per-qos to --cgroups-per-qos (#39972,)
This commit is contained in:
Kubernetes Submit Queue 2017-10-30 18:08:38 -07:00 committed by GitHub
commit dbfce3dacc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -210,10 +210,10 @@ make test-e2e-node TEST_ARGS='--kubelet-flags="--network-plugin= --network-plugi
## Additional QoS Cgroups Hierarchy level testing
For testing with the QoS Cgroup Hierarchy enabled, you can pass --experimental-cgroups-per-qos flag as an argument into Ginkgo using TEST_ARGS
For testing with the QoS Cgroup Hierarchy enabled, you can pass --cgroups-per-qos flag as an argument into Ginkgo using TEST_ARGS
```sh
make test_e2e_node TEST_ARGS="--experimental-cgroups-per-qos=true"
make test_e2e_node TEST_ARGS="--cgroups-per-qos=true"
```
# Notes on tests run by the Kubernetes project during pre-, post- submit.