From 503ddad7a37bed80fdcac32174c05061b7ba4817 Mon Sep 17 00:00:00 2001 From: scjane Date: Fri, 20 Jan 2017 11:26:02 +0800 Subject: [PATCH] Update quick-start.md --- docs/user-guide/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/quick-start.md b/docs/user-guide/quick-start.md index 78e43eb1ce..6ad7940526 100644 --- a/docs/user-guide/quick-start.md +++ b/docs/user-guide/quick-start.md @@ -22,7 +22,7 @@ $ kubectl run my-nginx --image=nginx --replicas=2 --port=80 deployment "my-nginx" created ``` -To expose your service to the public internet, run: +To expose your service to the public Internet, run: ```shell $ kubectl expose deployment my-nginx --target-port=80 --type=LoadBalancer @@ -49,7 +49,7 @@ NAME CLUSTER_IP EXTERNAL_IP PORT(S) AGE my-nginx 10.179.240.1 25.1.2.3 80/TCP 8s ``` -You may need to wait for a minute or two for the external ip address to be provisioned. +You may need to wait for a minute or two for the external IP address to be provisioned. In order to access your nginx landing page, you also have to make sure that traffic from external IPs is allowed. Do this by opening a [firewall to allow traffic on port 80](/docs/user-guide/services-firewalls).