Fixed typo s/SERVCEPORT/SERVICEPORT/ (#10066)

This commit is contained in:
David Young 2018-08-24 14:00:37 +12:00 committed by k8s-ci-robot
parent d1ce97f4c2
commit cbf9e1d872
1 changed files with 1 additions and 1 deletions

View File

@ -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