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
{{ message }}
This repository has been archived by the owner on Jun 14, 2021. It is now read-only.
CCS 1.0.3 uses kubeadm which uses RBAC and allows for unauthenticated access by design and best practices. The kubernetes dashboard URL will throw error that unauthenticated user cannot access it, for this to work the preferred way of using is to:
scp core@master-ip:/etc/kubernetes/admin.conf ~/.kube/config
# Fix the ip in the ~/.kube/config file to the public IP of the master
kubectl --insecure-skip-tls-verify proxy
# Access dashboard locally
http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/#!/node?namespace=_all
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
CCS 1.0.3 uses kubeadm which uses RBAC and allows for unauthenticated access by design and best practices. The kubernetes dashboard URL will throw error that unauthenticated user cannot access it, for this to work the preferred way of using is to:
The text was updated successfully, but these errors were encountered: