Explore the New AWS Non-air-gapped Cluster
This guide explains how to use the command line to interact with your newly deployed Kubernetes cluster.
Follow these steps:
Fetch the kubeconfig file with the command:
CODEdkp get kubeconfig -c ${CLUSTER_NAME} > ${CLUSTER_NAME}.conf
Verify the API server is up by listing the nodes:
CODEkubectl --kubeconfig=${CLUSTER_NAME}.conf get nodes
Wait for the Status to move to Ready
while calico-node
pods are being deployed.
List the Pods with the command:
CODEkubectl --kubeconfig=${CLUSTER_NAME}.conf get pods -A