diff --git a/site/content/en/docs/tutorials/kubernetes_101/module2.md b/site/content/en/docs/tutorials/kubernetes_101/module2.md index a3bda9c5ce55..bd4c9a3426e8 100644 --- a/site/content/en/docs/tutorials/kubernetes_101/module2.md +++ b/site/content/en/docs/tutorials/kubernetes_101/module2.md @@ -85,7 +85,7 @@ echo Name of the Pod: $POD_NAME You can access the Pod through the API by running: ```shell -curl http://localhost:8001/api/v1/namespaces/default/pods/$PODNAME +curl http://localhost:8001/api/v1/namespaces/default/pods/$POD_NAME ``` In order for the new deployment to be accessible without using the Proxy, a Service is required which will be explained in the next modules.