From fc9a9cd884e0de4689f390c46ac3cec55ef0f7c7 Mon Sep 17 00:00:00 2001 From: foo0x29a Date: Wed, 10 Oct 2018 00:33:48 -0300 Subject: [PATCH] Fix cpu-manager README links --- staging/cpu-manager/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/staging/cpu-manager/README.md b/staging/cpu-manager/README.md index 630d6c5b5..9a2b9eca8 100644 --- a/staging/cpu-manager/README.md +++ b/staging/cpu-manager/README.md @@ -22,7 +22,7 @@ system representation generated by ## Run pods -The example pods are in the `/examples/cpu-manager` directory of the +The example pods are in the `/examples/staging/cpu-manager` directory of the Kubernetes source tree. Your ability to run all of the example pods simultaneously depends on how many CPUs are available on the test system. @@ -45,14 +45,14 @@ Run a pod with a single container in the shared pool, and another pod with a single container in an exclusive cpuset with one CPU. ``` -$ kubectl create -f examples/cpu-manager/shared.yaml -$ kubectl create -f examples/cpu-manager/exclusive-1.yaml +$ kubectl create -f examples/staging/cpu-manager/shared.yaml +$ kubectl create -f examples/staging/cpu-manager/exclusive-1.yaml ``` To list IP addresses of the pods running in the local cluster, do: ``` -$ watch ./examples/cpu-manager/pod-ips +$ watch ./examples/staging/cpu-manager/pod-ips exclusive-1 http://172.17.0.4 shared http://172.17.0.3 ```