From be404a074f91480414dc510af5408cb9c190fe1e Mon Sep 17 00:00:00 2001 From: Denis Andrejew Date: Tue, 29 Nov 2016 11:54:48 +0000 Subject: [PATCH] fix typo in `kubectl proxy` command line help fixed port from 8011 to 8001 (the default) because in that particular line no specific port is specified and thus the default is going to be used. --- pkg/kubectl/cmd/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubectl/cmd/proxy.go b/pkg/kubectl/cmd/proxy.go index 03135f044ca..e4d69fb91d9 100644 --- a/pkg/kubectl/cmd/proxy.go +++ b/pkg/kubectl/cmd/proxy.go @@ -58,7 +58,7 @@ var ( kubectl proxy --port=0 # Run a proxy to kubernetes apiserver, changing the api prefix to k8s-api - # This makes e.g. the pods api available at localhost:8011/k8s-api/v1/pods/ + # This makes e.g. the pods api available at localhost:8001/k8s-api/v1/pods/ kubectl proxy --api-prefix=/k8s-api`) )