Access Your Cluster from Terminal
To access your cluster from your terminal, follow these steps:
Install kubectl
You will need to install the Kubernetes CLI (kubectl).
Download your cluster's Kubeconfig
If you haven't already, click the Download Kubeconfig button in the cluster details page.

Define the KUBECONFIG environment variable
- Open a terminal and run the following command:
export KUBECONFIG=PATH_TO_YOUR_KUBECONFIG_FILE$env:KUBECONFIG = "C:\Users\YOUR_USERNAME\Downloads\YOUR_KUBECONFIG_YAML_FILE"Done!
You may now access your cluster using the kubectl command ! Try it out:
kubectl get nodesAllow Scheduling on Single Node Cluster
Single Node Cluster
If you are using a single node cluster, you need to allow scheduling on the node.
kubectl taint nodes --all node-role.kubernetes.io/control-plane-Next Steps
Configure Load Balancer
Add a load balancer to your cluster to allow public access to your cluster.