From 17ae93b8331cf0388bbe301d25be15054209f717 Mon Sep 17 00:00:00 2001 From: Xander Grzywinski Date: Thu, 20 Aug 2020 08:21:11 -0700 Subject: [PATCH] uupdate to ubuntu 20.04 --- docs/03-compute-resources.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/03-compute-resources.md b/docs/03-compute-resources.md index fe7640c..32df6ed 100644 --- a/docs/03-compute-resources.md +++ b/docs/03-compute-resources.md @@ -184,7 +184,7 @@ az network lb rule create \ ## Compute Instances -The compute instances in this lab will be provisioned using [Ubuntu Server](https://www.ubuntu.com/server) 18.04, which has good support for the [containerd container runtime](https://github.com/containerd/containerd). Each compute instance will be provisioned with a fixed private IP address to simplify the Kubernetes bootstrapping process. +The compute instances in this lab will be provisioned using [Ubuntu Server](https://www.ubuntu.com/server) 20.04, which has good support for the [containerd container runtime](https://github.com/containerd/containerd). Each compute instance will be provisioned with a fixed private IP address to simplify the Kubernetes bootstrapping process. ### Kubernetes Controllers @@ -224,7 +224,7 @@ for i in 0 1 2; do --availability-set kubernetes-the-hard-way-as \ --no-wait \ --nics controller-${i}-nic \ - --image Canonical:UbuntuServer:18.04-LTS:latest \ + --image Canonical:UbuntuServer:20.04-LTS:latest \ --admin-username azureuser \ --generate-ssh-keys \ --size Standard_B2s \ @@ -269,7 +269,7 @@ for i in 0 1 2; do --resource-group kubernetes-the-hard-way \ --no-wait \ --nics worker-${i}-nic \ - --image Canonical:UbuntuServer:18.04-LTS:latest \ + --image Canonical:UbuntuServer:20.04-LTS:latest \ --admin-username azureuser \ --generate-ssh-keys \ --size Standard_B2s \