Loading docs
Skip to main content

Connecting with kubectl

Download kubeconfig

  1. Open the cluster detail page
  2. Click Download kubeconfig
  3. Move the file to ~/.kube/config or set KUBECONFIG:
export KUBECONFIG=~/Downloads/your-cluster.yaml
kubectl get nodes

Connecting a container registry

To pull private images into your cluster, create an image pull secret:

kubectl create secret docker-registry regcred \
--docker-server=registry.yourplatform.com \
--docker-username=<your-username> \
--docker-password=<your-token>

Then reference it in your pod spec:

spec:
imagePullSecrets:
- name: regcred