I'm using kubernetes on a local Mac OS docker installation.
I've installed the dashboard ui following these instructions:
kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml
kubectl proxy
When I try to access the ui by http://localhost:8001/ui I'll get a prompt to either provide a kubeconfig file or a token.
So I try to configure authentication: The dashboard docs refer to the authentication docs:
Basic authentication is enabled by passing the
--basic-auth-file=SOMEFILE
option to API server. ...password,user,uid,"group1,group2,group3"
Questions:
--basic-auth-file
to kubernetes?