Update provisioned OS to Ubuntu 20.04 00/4500/2
authorTodd Malsbary <todd.malsbary@intel.com>
Wed, 3 Nov 2021 17:19:12 +0000 (10:19 -0700)
committerTodd Malsbary <todd.malsbary@intel.com>
Mon, 22 Nov 2021 19:46:26 +0000 (19:46 +0000)
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: I4279dd565e796b28e1e33484a6a64ecaf99cf3a2

README.md
deploy/clusters/ha-dhcp-values.yaml
deploy/clusters/static-values.yaml
deploy/machines/example-values.yaml
deploy/metal3/scripts/nodes.json.sample
deploy/site/vm/clusters-values.yaml
env/lib/common.sh
tools/vagrant/create_nodes_json_sample.sh

index 242156b..3f76e11 100644 (file)
--- a/README.md
+++ b/README.md
@@ -149,7 +149,7 @@ ICN provides DHCP servers for the provisioning network.
       "address": "10.10.10.11"
     },
     "os": {
-      "image_name": "bionic-server-cloudimg-amd64.img",
+      "image_name": "focal-server-cloudimg-amd64.img",
       "username": "ubuntu",
       "password": "mypasswd"
     },
@@ -203,7 +203,7 @@ ICN provides DHCP servers for the provisioning network.
       "address": "10.10.10.12"
     },
     "os": {
-      "image_name": "bionic-server-cloudimg-amd64.img",
+      "image_name": "focal-server-cloudimg-amd64.img",
       "username": "ubuntu",
       "password": "mypasswd"
     },
index bee2c39..b001dad 100644 (file)
@@ -70,14 +70,14 @@ clusters:
     #
     # Refer to the below for further information:
     # - https://github.com/kubernetes/kubernetes/blob/master/build/dependencies.yaml
-    # - https://download.docker.com/linux/ubuntu/dists/bionic/stable/binary-amd64/Packages
+    # - https://download.docker.com/linux/ubuntu/dists/focal/stable/binary-amd64/Packages
     #
     # The OS image.
-    imageName: bionic-server-cloudimg-amd64.img
+    imageName: focal-server-cloudimg-amd64.img
     # The version of Kubernetes installed.
     k8sVersion: v1.21.6
     # The version of the kubelet, kubeadm, and kubectl packages.
     kubeVersion: 1.21.6-00
     # The version of the CRI installed.
     containerdVersion: 1.4.11-1
-    dockerVersion: 5:20.10.10~3-0~ubuntu-bionic
+    dockerVersion: 5:20.10.10~3-0~ubuntu-focal
index 6a2fad0..4df5373 100644 (file)
@@ -66,14 +66,14 @@ clusters:
     #
     # Refer to the below for further information:
     # - https://github.com/kubernetes/kubernetes/blob/master/build/dependencies.yaml
-    # - https://download.docker.com/linux/ubuntu/dists/bionic/stable/binary-amd64/Packages
+    # - https://download.docker.com/linux/ubuntu/dists/focal/stable/binary-amd64/Packages
     #
     # The OS image.
-    imageName: bionic-server-cloudimg-amd64.img
+    imageName: focal-server-cloudimg-amd64.img
     # The version of Kubernetes installed.
     k8sVersion: v1.21.6
     # The version of the kubelet, kubeadm, and kubectl packages.
     kubeVersion: 1.21.6-00
     # The version of the CRI installed.
     containerdVersion: 1.4.11-1
-    dockerVersion: 5:20.10.10~3-0~ubuntu-bionic
+    dockerVersion: 5:20.10.10~3-0~ubuntu-focal
index 7d6b16c..3c68b2d 100644 (file)
@@ -8,7 +8,7 @@ machines:
     bootMACAddress: 52:54:00:2b:bc:3a
 
     # Optional
-    imageName: bionic-server-cloudimg-amd64.img
+    imageName: focal-server-cloudimg-amd64.img
 
     # Optional
     networks:
index 43010b9..ce2402a 100644 (file)
@@ -8,7 +8,7 @@
         "address": "10.10.110.12"
       },
       "os": {
-        "image_name": "bionic-server-cloudimg-amd64.img",
+        "image_name": "focal-server-cloudimg-amd64.img",
         "username": "ubuntu",
         "password": "mypasswd"
       },
@@ -62,7 +62,7 @@
         "address": "10.10.110.13"
       },
       "os": {
-        "image_name": "bionic-server-cloudimg-amd64.img",
+        "image_name": "focal-server-cloudimg-amd64.img",
         "username": "ubuntu",
         "password": "mypasswd"
       },
index d0278f4..dd8baaf 100644 (file)
@@ -27,8 +27,8 @@ clusters:
     containerRuntime: containerd
     podCidr: 10.244.64.0/18
     cni: flannel
-    imageName: bionic-server-cloudimg-amd64.img
+    imageName: focal-server-cloudimg-amd64.img
     k8sVersion: v1.21.6
     kubeVersion: 1.21.6-00
     containerdVersion: 1.4.11-1
-    dockerVersion: 5:20.10.10~3-0~ubuntu-bionic
+    dockerVersion: 5:20.10.10~3-0~ubuntu-focal
index 1e633b6..56d19ba 100755 (executable)
@@ -9,8 +9,8 @@ IRONIC_INTERFACE=${IRONIC_INTERFACE:-}
 IRONIC_PROVISIONING_INTERFACE=${IRONIC_PROVISIONING_INTERFACE:-"provisioning"}
 IRONIC_IPMI_INTERFACE=${IRONIC_IPMI_INTERFACE:-}
 IRONIC_PROVISIONING_INTERFACE_IP=${IRONIC_PROVISIONING_INTERFACE_IP:-"172.22.0.1"}
-BM_IMAGE_URL=${BM_IMAGE_URL:-"https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img"}
-BM_IMAGE=${BM_IMAGE:-"bionic-server-cloudimg-amd64.img"}
+BM_IMAGE_URL=${BM_IMAGE_URL:-"https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img"}
+BM_IMAGE=${BM_IMAGE:-"focal-server-cloudimg-amd64.img"}
 
 #Baremetal operator repository URL
 BMOREPO="${BMOREPO:-https://github.com/metal3-io/baremetal-operator.git}"
index b0ed2b4..e1a9948 100755 (executable)
@@ -27,7 +27,7 @@ for ((i=1;i<=num_machines;++i)); do
         "address": "${ipmi_host}:${ipmi_port}"
       },
       "os": {
-        "image_name": "bionic-server-cloudimg-amd64.img",
+        "image_name": "focal-server-cloudimg-amd64.img",
         "username": "ubuntu",
         "password": "mypasswd"
       },