Working with Azure using the az cli commands is extremely productive and fast - provided you know most of the commands by heart. Soon into your Azure journey you'll memorise...
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...
Azure Container Registry (ACR) Cheat Sheet for use with Azure CLI (az). List ACRs az acr list Set default ACR az configure --defaults acr=[ACR NAME] List Specific ACR az acr...
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]
GCP Authentication Cheat Sheet for use with gcloud cli. Login with Service Account gcloud auth activate-service-account [SERVICE ACCOUNT EMAIL] --key-file="[KEY FILE NAME JSON]" List Accounts gcloud auth list
Azure Authentication Cheat Sheet for use with Azure CLI (az). Login (principal) az login --service-principal -u [PRINCIPAL GUID] --password [PRINCIPAL KEY] --tenant [TENANT GUID] Show subscriptions az account list Current...