Create a small infra for kubernetes #On your Azure CLI az --version # Version expected 2.1.0 or higher az group delete --name kubernetes -y az group create -n kubernetes -l westeurope az network vnet create -g kubernetes \ -n kubernetes-vnet \ --address-prefix 10.240.0.0/24 \ --subnet-name kubernetes-subnet az network...

Install Client # most simple arkade get doctl # normal way curl -OL https://github.com/digitalocean/doctl/releases/download/v1.104.0/doctl-1.104.0-linux-amd64.tar.gz tar xf doctl-1.104.0-linux-amd64.tar.gz mv doctl /usr/local/bin # Auto-Completion ZSH doctl completion zsh > $ZSH/completions/_doctl Basics find possible...