- Kubernetes:A Complete DevOps Cookbook
- Murat Karslioglu
- 50字
- 2025-04-04 13:20:39
Connecting to AKS clusters
Let's perform the following steps:
- Gather some credentials and configure kubectl so that you can use them:
$ az aks get-credentials --resource-group k8sdevopscookbook \
--name AKSCluster
- Verify your Kubernetes cluster:
$ kubectl get nodes
Now, you have a three-node GKE cluster up and running.