Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update k3s and test image to ubuntu 22 #2108

Merged
merged 3 commits into from
Feb 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/playbooks/roles/install-k3s/defaults/main.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/playbooks/test-csi-cinder-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"]'
Expand Down
2 changes: 1 addition & 1 deletion tests/playbooks/test-csi-manila-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"]'
Expand Down
2 changes: 1 addition & 1 deletion tests/playbooks/test-occm-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"]'
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/create-gce-vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down