Connect to a cluster

Seamlessly connect to your Kubernetes cluster with these quick steps! Choose the cluster on the Project page, download the cluster configuration with a simple click, and now you're ready to run kubectl commands using the provided configuration. Enhance your cluster management effortlessly with this straightforward process.

  1. Select the cluster that you want to configure on the Project page. Download cluster config by clicking on the button.

  1. Now you can run kubectl with the configuration.

$ kubectl --kubeconfig=k8s-development-1_kubeconfig.txt get po -A
NAMESPACE     NAME                                                              READY   STATUS    RESTARTS   AGE
kube-system   coredns-5dd5756b68-nv4ht                                          0/1     Pending   0          6m55s
kube-system   coredns-5dd5756b68-vfwqs                                          0/1     Pending   0          6m55s
kube-system   etcd-master-node.k8s657f0b4560e640021d6963f3                      1/1     Running   0          7m2s
kube-system   kube-apiserver-master-node.k8s657f0b4560e640021d6963f3            1/1     Running   0          7m4s
kube-system   kube-controller-manager-master-node.k8s657f0b4560e640021d6963f3   1/1     Running   0          7m1s
kube-system   kube-proxy-w8m4p                                                  1/1     Running   0          6m56s
kube-system   kube-proxy-wk6tp                                                  1/1     Running   0          6m38s
kube-system   kube-scheduler-master-node.k8s657f0b4560e640021d6963f3            1/1     Running   0          7m3s

Last updated