> For the complete documentation index, see [llms.txt](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/tutorials/dyneemes/connect-to-a-cluster.md).

# 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 <mark style="color:orange;">**`Project`**</mark> page. Download <mark style="color:orange;">`cluster config`</mark> by clicking on the button.

<figure><img src="/files/ByeEWh355OUdYbTOi717" alt=""><figcaption></figcaption></figure>

2. 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
```
