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...
base64 with Bash Cheat Sheet for use with bash shell. Encode echo 'TEXT_TO_ENCODE' | base64 Decode echo 'TEXT_TO_DECODE' | base64 -d
Base64 with Powershell Cheat Sheet for use with powershell task automation framework. Encode [System.Convert]:: ToBase64String([System.Text.Encoding]:: UTF8.GetBytes("MY_PLAIN_TEXT")) Decode [System.Text.Encoding]:: UTF8.GetString([System.Convert]:: FromBase64String("MY_ENCODED_TEXT"))
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]
Docker Cheat Sheet for use with docker cli. System Version docker version Info docker info Stats docker stats -a System Components docker system df Prune all unused and dangling images...
Helm Cheat Sheet for use with helm cli. System View charts in local Helm helm search [KEYWORD] Inspect chart in local Helm helm inspect [REPO NAME]/[CHART NAME] --version [CHART VERSION]...
MongoDb Cheat Sheet for use with mongo shell. System Open mongo Satabases List show dbs Open use [DB NAME] Collections Create db.createCollection("[COLLECTION NAME]") Show show collections Records Insert db.[COLLECTION NAME].insert({item:...