DNA primer to comment translator as kubernetes cluster in azure
source: https://docs.microsoft.com/de-de/windows/wsl/install-win10
open powersell as administrator and enter
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
- open microsoft store
- search for linux, choose distribution and install it
- time to get a coffee
source: https://docs.microsoft.com/de-de/cli/azure/install-azure-cli-apt?view=azure-cli-latest
open linux distribution bash
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
time to finish your coffee you got earlier
- enter portal.azure.com
- search for kubernetes services
- create kubernetes cluster
- review + create
az aks install-cli
set HTTPS_PROXY=<proxy-adress>:<port>
set HTTP_PROXY=<proxy-adress>:<port>
set https_proxy=<proxy-adress>:<port>
set http_proxy=<proxy-adress>:<port>
az login
az account set --subscription <subscription ID or name>
az aks get-credentials -g <resource-group> -n <clustername>
kubectl create clusterrolebinding kubernetes-dashboard --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard
az aks browse -g <resource-group> -n <clustername>
- default backend
- namespaces
- rbac - setup
- configmap
- ingress deployment
- ingress service
- ingress
- certificate manger (using lets encrypt)
- staging certificate
- production certificate
- certificate manager
- storage setup
- frontend
- backend
- ...