From 04641907c7d8d1bcbc7bcdbf7900afd69211b36a Mon Sep 17 00:00:00 2001 From: yob8 <65351698+yob8@users.noreply.github.com> Date: Sun, 17 Oct 2021 01:54:22 +0200 Subject: [PATCH 1/4] Update _index.md Updated command to create AKS cluster. Removed version restriction and added missing "\" --- .../v2.5/en/installation/install-rancher-on-k8s/aks/_index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md index 08b873dd53b..ae2e83e81b1 100644 --- a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md +++ b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md @@ -48,9 +48,8 @@ To create an AKS cluster, run the following command. Use a VM size that applies ``` az aks create \ - --resource-group rancher-rg + --resource-group rancher-rg \ --name rancher-server \ - --kubernetes-version 1.18.14 \ --node-count 3 \ --node-vm-size Standard_D2_v3 ``` From d1f518ea3371126c4f7e6c1eb0f523d348abbc75 Mon Sep 17 00:00:00 2001 From: Billy Tat Date: Wed, 27 Oct 2021 11:41:06 -0700 Subject: [PATCH 2/4] Add version back to aks create command --- .../v2.5/en/installation/install-rancher-on-k8s/aks/_index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md index ae2e83e81b1..d541afa6b7d 100644 --- a/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md +++ b/content/rancher/v2.5/en/installation/install-rancher-on-k8s/aks/_index.md @@ -50,6 +50,7 @@ To create an AKS cluster, run the following command. Use a VM size that applies az aks create \ --resource-group rancher-rg \ --name rancher-server \ + --kubernetes-version 1.20.5 \ --node-count 3 \ --node-vm-size Standard_D2_v3 ``` From 161441ebeebc94938e19e770cb6335295448d724 Mon Sep 17 00:00:00 2001 From: Billy Tat Date: Wed, 27 Oct 2021 11:44:02 -0700 Subject: [PATCH 3/4] Apply typo fix from 04641907 (author: yob8) to v2.6 --- .../v2.6/en/installation/install-rancher-on-k8s/aks/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md b/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md index 97890c7c5de..d50e12409be 100644 --- a/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md +++ b/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md @@ -48,7 +48,7 @@ To create an AKS cluster, run the following command. Use a VM size that applies ``` az aks create \ - --resource-group rancher-rg + --resource-group rancher-rg \ --name rancher-server \ --kubernetes-version 1.18.14 \ --node-count 3 \ From fdddffb587739c6cd8a1c30b15c440971ed9a3a1 Mon Sep 17 00:00:00 2001 From: Billy Tat Date: Wed, 27 Oct 2021 11:44:52 -0700 Subject: [PATCH 4/4] Update k8s version in aks create command --- .../v2.6/en/installation/install-rancher-on-k8s/aks/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md b/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md index d50e12409be..c271e18ad95 100644 --- a/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md +++ b/content/rancher/v2.6/en/installation/install-rancher-on-k8s/aks/_index.md @@ -50,7 +50,7 @@ To create an AKS cluster, run the following command. Use a VM size that applies az aks create \ --resource-group rancher-rg \ --name rancher-server \ - --kubernetes-version 1.18.14 \ + --kubernetes-version 1.20.5 \ --node-count 3 \ --node-vm-size Standard_D2_v3 ```