You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example, kubectl proxy command is used to proxy a local port to the kube-apiserver: $ kubectl proxy --port=8080
This will work only if you have a config file recording the address of kube-apiserver, either at the default location ~/.kube/config, or provided by the --kubeconfig= parameter.
If none exists, kubectl proxy --port=8080 will create a loop, proxying itself to itself, and a kubectl command will cause a confusing too many open files error message.
The text was updated successfully, but these errors were encountered:
In the example, kubectl proxy command is used to proxy a local port to the kube-apiserver:
$ kubectl proxy --port=8080
This will work only if you have a config file recording the address of kube-apiserver, either at the default location
~/.kube/config
, or provided by the--kubeconfig=
parameter.If none exists,
kubectl proxy --port=8080
will create a loop, proxying itself to itself, and akubectl
command will cause a confusingtoo many open files
error message.The text was updated successfully, but these errors were encountered: