From 6380f5b919cd0ecaafffa103bcf4bbbb47c4d7a1 Mon Sep 17 00:00:00 2001 From: Sander Rodenhuis Date: Mon, 6 Nov 2023 19:54:52 +0100 Subject: [PATCH] fix: multiple --- docs/get-started/installation/azure.md | 10 ++++------ docs/get-started/installation/byo-wildcard.md | 18 ++++++++++++++++++ docs/get-started/installation/civo.md | 2 +- docs/get-started/installation/digitalocean.md | 2 +- docs/get-started/installation/gcp.md | 2 +- docs/get-started/installation/linode.md | 4 ++-- 6 files changed, 27 insertions(+), 11 deletions(-) create mode 100644 docs/get-started/installation/byo-wildcard.md diff --git a/docs/get-started/installation/azure.md b/docs/get-started/installation/azure.md index 6334c68eb..bc06ca9d7 100644 --- a/docs/get-started/installation/azure.md +++ b/docs/get-started/installation/azure.md @@ -31,14 +31,13 @@ az account set --subscription= Setting the environment variables ```bash # Set Resource Group Name -RGNAME=otomi +RGNAME=rg-otomi # Set Region (Location) or any other location LOCATION=westeurope # Create Resource Group az group create -n $RGNAME -l $LOCATION # Set Cluster name -NAME=quickstart -CLUSTER_NAME=otomi-aks-$NAME +CLUSTER_NAME=otomi ``` Creating the cluster @@ -53,7 +52,7 @@ az aks create --name $CLUSTER_NAME \ --nodepool-name otomipool \ --node-count 3 \ --node-vm-size Standard_F8s_v2 \ ---kubernetes-version 1.26.9 \ +--kubernetes-version 1.27.3 \ --enable-cluster-autoscaler \ --min-count 1 \ --max-count 6 \ @@ -61,7 +60,6 @@ az aks create --name $CLUSTER_NAME \ --network-plugin azure \ --network-policy calico \ --outbound-type loadBalancer \ ---uptime-sla \ --generate-ssh-keys ``` @@ -127,7 +125,7 @@ tee values.yaml<