From da339a588a4ecf6be75fc63648259f0ec29cd3d9 Mon Sep 17 00:00:00 2001 From: Mark Moretto <25012707+MarkMoretto@users.noreply.github.com> Date: Mon, 6 Nov 2023 22:45:43 -0500 Subject: [PATCH] Update module2.md Fixed spelling discrepancy. --- site/content/en/docs/tutorials/kubernetes_101/module2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.