From 221454da154d3ce69e688ac9779364042cc9be2f Mon Sep 17 00:00:00 2001 From: Lee Calcote Date: Sun, 12 Mar 2017 20:44:59 -0500 Subject: [PATCH] Added pod name in run command Added "node-hello" in the run command to give the pod a name. Command will not execute w/o a pod name. --- docs/tasks/access-kubernetes-api/http-proxy-access-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/access-kubernetes-api/http-proxy-access-api.md b/docs/tasks/access-kubernetes-api/http-proxy-access-api.md index 92baf97aa9..99b94459bf 100644 --- a/docs/tasks/access-kubernetes-api/http-proxy-access-api.md +++ b/docs/tasks/access-kubernetes-api/http-proxy-access-api.md @@ -13,7 +13,7 @@ This page shows how to use an HTTP proxy to access the Kubernetes API. * If you do not already have an application running in your cluster, start a Hello world application by entering this command: - kubectl run --image=gcr.io/google-samples/node-hello:1.0 --port=8080 + kubectl run node-hello --image=gcr.io/google-samples/node-hello:1.0 --port=8080 {% endcapture %}