From 831017e5a996aaa4a4fc9e1c5c449417ac9b9e21 Mon Sep 17 00:00:00 2001 From: scuxiayiqian Date: Mon, 16 Mar 2015 11:28:32 +0800 Subject: [PATCH] fix the stop rc failure in Cleanup Step --- examples/guestbook/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/guestbook/README.md b/examples/guestbook/README.md index b46058758e9..0bc07ce61a7 100644 --- a/examples/guestbook/README.md +++ b/examples/guestbook/README.md @@ -436,8 +436,8 @@ If you are in a live kubernetes cluster, you can just kill the pods, using a scr ```shell ### First, kill services and controllers. -kubectl stop rc examples/guestbook/redis-slave-controller.json -kubectl stop rc examples/guestbook/frontend-controller.json +kubectl stop -f examples/guestbook/redis-slave-controller.json +kubectl stop -f examples/guestbook/frontend-controller.json kubectl delete -f examples/guestbook/redis-master-service.json kubectl delete -f examples/guestbook/redis-slave-service.json kubectl delete pod redis-master # This is the only pod that requires manual removal.