From 09be95a5a9f367719b31763ae364c9aa0a2da98b Mon Sep 17 00:00:00 2001 From: Jesse Haka Date: Sat, 18 Feb 2023 12:39:21 +0200 Subject: [PATCH 1/3] use ubuntu focal --- tests/scripts/create-gce-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/create-gce-vm.sh b/tests/scripts/create-gce-vm.sh index 2eba24e8a7..d8c39e2acd 100755 --- a/tests/scripts/create-gce-vm.sh +++ b/tests/scripts/create-gce-vm.sh @@ -94,7 +94,7 @@ main() { if ! gcloud compute disks describe devstack-${FLAVOR} --zone "${GCP_ZONE}" > /dev/null 2>&1; then gcloud compute disks create devstack-${FLAVOR} \ - --image-project ubuntu-os-cloud --image-family ubuntu-2004-lts \ + --image-project ubuntu-os-cloud --image-family ubuntu-2204-lts \ --zone "${GCP_ZONE}" fi From df39c540b5ceddc3202e32a8dfcea4586543f389 Mon Sep 17 00:00:00 2001 From: Jesse Haka Date: Sat, 18 Feb 2023 10:39:24 +0200 Subject: [PATCH 2/3] update k3s used in tests --- tests/playbooks/test-csi-cinder-e2e.yaml | 2 +- tests/playbooks/test-csi-manila-e2e.yaml | 2 +- tests/playbooks/test-occm-e2e.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/playbooks/test-csi-cinder-e2e.yaml b/tests/playbooks/test-csi-cinder-e2e.yaml index 34ae4c9ec4..08d5d2a368 100644 --- a/tests/playbooks/test-csi-cinder-e2e.yaml +++ b/tests/playbooks/test-csi-cinder-e2e.yaml @@ -20,7 +20,7 @@ - cinder - role: install-k3s worker_node_count: 0 - k3s_release: v1.23.6+k3s1 + k3s_release: v1.26.1+k3s1 - role: install-docker - role: install-docker-registry cert_hosts: ' ["{{ ansible_default_ipv4.address }}"]' diff --git a/tests/playbooks/test-csi-manila-e2e.yaml b/tests/playbooks/test-csi-manila-e2e.yaml index e37cfbd5eb..33d4ed6444 100644 --- a/tests/playbooks/test-csi-manila-e2e.yaml +++ b/tests/playbooks/test-csi-manila-e2e.yaml @@ -19,7 +19,7 @@ - manila - role: install-k3s worker_node_count: 0 - k3s_release: v1.23.6+k3s1 + k3s_release: v1.26.1+k3s1 - role: install-docker - role: install-docker-registry cert_hosts: ' ["{{ ansible_default_ipv4.address }}"]' diff --git a/tests/playbooks/test-occm-e2e.yaml b/tests/playbooks/test-occm-e2e.yaml index 5880ea153d..fbb6d1ecfc 100644 --- a/tests/playbooks/test-occm-e2e.yaml +++ b/tests/playbooks/test-occm-e2e.yaml @@ -21,7 +21,7 @@ - barbican - role: install-k3s worker_node_count: 0 - k3s_release: v1.23.6+k3s1 + k3s_release: v1.26.1+k3s1 - role: install-docker - role: install-docker-registry cert_hosts: ' ["{{ ansible_default_ipv4.address }}"]' From d2ed2b8ef94094f87e454893bae2b5e4e2574ba0 Mon Sep 17 00:00:00 2001 From: Jesse Haka Date: Sat, 18 Feb 2023 13:05:33 +0200 Subject: [PATCH 3/3] update default version --- tests/playbooks/roles/install-k3s/defaults/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playbooks/roles/install-k3s/defaults/main.yaml b/tests/playbooks/roles/install-k3s/defaults/main.yaml index 26458cc914..71f6a6f37e 100644 --- a/tests/playbooks/roles/install-k3s/defaults/main.yaml +++ b/tests/playbooks/roles/install-k3s/defaults/main.yaml @@ -1,5 +1,5 @@ --- -k3s_release: "v1.23.6+k3s1" +k3s_release: v1.26.1+k3s1 worker_node_count: 1 cluster_token: "9a08jv.c0izixklcxtmnze7" devstack_workdir: "{{ ansible_user_dir }}/devstack"