Kubernetes cluster access
Page contains information about obtaining kubernetes cluster access
Access kubernetes cluster from the server (ssh connection)
Configure kubectl locally to work with remote cluster
scp -P 22 -i ~/.ssh/id_rsa [email protected]:~/.kube/config /tmp/kubeconfigOption 1: Use the /tmp/kubeconfig temporarily
export KUBECONFIG=/tmp/kubeconfigkubectl get namespaces
Option 2: Make cluster connection your default kubeconfig
Option 3: Add new cluster to your default kubeconfig
Verify cluster connection
Links
Last updated