GCP Kubernetes Engine Cheat Sheet for use with gcloud cli. List Kubernetes Clusters gcloud container clusters list Describe Kubernetes Cluster gcloud container clusters describe [CLUSTER NAME] --zone [ZONE] Get Credentials...
Kubernetes Workloads Cheat Sheet for use with kubectl cli. Namespace Show all Namespaces kubectl get namespaces Get all resources per namespace kubectl get all -n [NAMESPACE] Delete namespace kubectl delete...
Kubernetes Cluster Cheat Sheet for use with kubectl cli. Nodes View Memory/Cpu Usage kubectl get nodes --no-headers | awk '{print $1}' | xargs -I {} sh -c 'echo {}; kubectl...
Azure Kubernetes Service (AKS) Cheat Sheet for use with kubectl cli. Credentials to access cluster az aks get-credentials --resource-group [RG] --name [CLUSTER] Browse az aks browse --resource-group [RG] --name [CLUSTER]