From a636896499d0c79d9e62c86bec1784b79889ffca Mon Sep 17 00:00:00 2001 From: Mikal Date: Wed, 14 Jun 2017 15:50:33 +0200 Subject: [PATCH] Fix broken command in registry addon document --- cluster/addons/registry/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/addons/registry/README.md b/cluster/addons/registry/README.md index 89af4a15df7..59542355eda 100644 --- a/cluster/addons/registry/README.md +++ b/cluster/addons/registry/README.md @@ -249,7 +249,7 @@ You can use `kubectl` to set up a port-forward from your local node to a running Pod: ```console -$ POD=$(kubectl get pods --namespace kube-system -l k8s-app=kube-registry \ +$ POD=$(kubectl get pods --namespace kube-system -l k8s-app=kube-registry-upstream \ -o template --template '{{range .items}}{{.metadata.name}} {{.status.phase}}{{"\n"}}{{end}}' \ | grep Running | head -1 | cut -f1 -d' ')