From f72e2ff10f88ee2a81893869b4442dbddd4d745e Mon Sep 17 00:00:00 2001 From: Egor Guz Date: Sun, 11 Oct 2015 20:32:41 -0700 Subject: [PATCH] fixed incorrect service name --- docs/user-guide/walkthrough/k8s201.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/walkthrough/k8s201.md b/docs/user-guide/walkthrough/k8s201.md index 229eef033d8..746ea3ee036 100644 --- a/docs/user-guide/walkthrough/k8s201.md +++ b/docs/user-guide/walkthrough/k8s201.md @@ -225,7 +225,7 @@ $ curl http://${SERVICE_IP}:${SERVICE_PORT} To delete the service by name: ```console -$ kubectl delete service nginx-controller +$ kubectl delete service nginx-service ``` When created, each service is assigned a unique IP address. This address is tied to the lifespan of the Service, and will not change while the Service is alive. Pods can be configured to talk to the service, and know that communication to the service will be automatically load-balanced out to some pod that is a member of the set identified by the label selector in the Service.