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.
This commit is contained in:
Denis Andrejew 2016-11-29 11:54:48 +00:00 committed by GitHub
parent e6c57c6569
commit be404a074f

View File

@ -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`)
)