Skip to content

Commit 7be83b8

Browse files
authored
Merge pull request #1716 from Nordix/lentzi90/ubuntu-2204-devstack
🌱 Bump devstack image to ubuntu 22.04
2 parents 3652e4b + 5f8ae78 commit 7be83b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hack/ci/gce-project.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,15 @@ function create_vm {
9494
# Check if image was already created.
9595
# Images are not zone specific, but the disk is.
9696
if ! gcloud compute images describe "$imagename" --project "$GCP_PROJECT" >/dev/null; then
97-
# Create the base disk image based on the public Ubuntu 20.04 LTS cloud image
97+
# Create the base disk image based on the public Ubuntu 22.04 LTS cloud image
9898
# Note that this has also been verified to work with CentOS 8 as of
9999
# 2021-01-12, but this is not tested regularly.
100100
# To use CentOS 8:
101101
# --image-project centos-cloud --image-family centos-stream-8
102102
if ! gcloud compute disks describe "$diskname" --project "$GCP_PROJECT" --zone "$GCP_ZONE" >/dev/null; then
103103
gcloud compute disks create "$diskname" \
104104
--project "$GCP_PROJECT" \
105-
--image-project ubuntu-os-cloud --image-family ubuntu-2004-lts \
105+
--image-project ubuntu-os-cloud --image-family ubuntu-2204-lts \
106106
--zone "$GCP_ZONE"
107107
fi
108108
gcloud compute images create "$imagename" \

0 commit comments

Comments
 (0)