From 70c2df3e1d2a32c87f0061f1a5c443dbcd6a657f Mon Sep 17 00:00:00 2001 From: chenhuan12 Date: Wed, 30 Aug 2017 16:32:46 +0800 Subject: [PATCH] fix the command output fix the command output --- .../create-external-load-balancer.md | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/docs/tasks/access-application-cluster/create-external-load-balancer.md b/docs/tasks/access-application-cluster/create-external-load-balancer.md index 4be2372a45..effd07dd87 100644 --- a/docs/tasks/access-application-cluster/create-external-load-balancer.md +++ b/docs/tasks/access-application-cluster/create-external-load-balancer.md @@ -82,16 +82,19 @@ kubectl describe services example-service which should produce output like this: ```bash - Name: example-service - Selector: app=example - Type: LoadBalancer - IP: 10.67.252.103 - LoadBalancer Ingress: 123.45.678.9 - Port: 80/TCP - NodePort: 32445/TCP - Endpoints: 10.64.0.4:80,10.64.1.5:80,10.64.2.4:80 - Session Affinity: None - No events. + Name: example-service + Namespace: default + Labels: + Annotations: + Selector: app=example + Type: LoadBalancer + IP: 10.67.252.103 + LoadBalancer Ingress: 123.45.678.9 + Port: 80/TCP + NodePort: 32445/TCP + Endpoints: 10.64.0.4:80,10.64.1.5:80,10.64.2.4:80 + Session Affinity: None + Events: ``` The IP address is listed next to `LoadBalancer Ingress`.