From cbf9e1d8725d3b2299b96c47fbca411a3672cc34 Mon Sep 17 00:00:00 2001 From: David Young Date: Fri, 24 Aug 2018 14:00:37 +1200 Subject: [PATCH] Fixed typo s/SERVCEPORT/SERVICEPORT/ (#10066) --- content/en/docs/tutorials/k8s201.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tutorials/k8s201.md b/content/en/docs/tutorials/k8s201.md index 7c41d8864b..3c8b3aa8f9 100644 --- a/content/en/docs/tutorials/k8s201.md +++ b/content/en/docs/tutorials/k8s201.md @@ -175,7 +175,7 @@ kubectl delete pod busybox # Clean up the pod we created with "kubectl run" ``` -The service definition [exposed the Nginx Service](/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/) as port 8000 (`$SERVCE_PORT`). We can also access the service from a host running Kubernetes using that port: +The service definition [exposed the Nginx Service](/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/) as port 8000 (`$SERVICE_PORT`). We can also access the service from a host running Kubernetes using that port: ```shell wget -qO- http://$SERVICE_IP:$SERVICE_PORT # Run on a Kubernetes host