File tree Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Expand file tree Collapse file tree 5 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 81
81
# query_placement_for_availability_zone is the default from Xena
82
82
query_placement_for_availability_zone = True
83
83
84
+ [workarounds]
85
+ # FIXME(stephenfin): This is temporary while we get to the bottom of
86
+ # https://bugs.launchpad.net/nova/+bug/2091114 It should not be kept after
87
+ # we bump to 2025.1
88
+ disable_deep_image_inspection = True
89
+
84
90
[[post-config|$CINDER_CONF]]
85
91
[DEFAULT]
86
92
storage_availability_zone = ${ PRIMARY_AZ}
Original file line number Diff line number Diff line change 47
47
[DEFAULT]
48
48
cpu_allocation_ratio = 2.0
49
49
50
+ [workarounds]
51
+ # FIXME(stephenfin): This is temporary while we get to the bottom of
52
+ # https://bugs.launchpad.net/nova/+bug/2091114 It should not be kept after
53
+ # we bump to 2025.1
54
+ disable_deep_image_inspection = True
55
+
50
56
[[post-config|$CINDER_CONF]]
51
57
[DEFAULT]
52
58
storage_availability_zone = ${ SECONDARY_AZ}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ source "${scriptdir}/${RESOURCE_TYPE}.sh"
31
31
32
32
CLUSTER_NAME=${CLUSTER_NAME:- " capo-e2e" }
33
33
34
- OPENSTACK_RELEASE=${OPENSTACK_RELEASE:- " 2024.1 " }
34
+ OPENSTACK_RELEASE=${OPENSTACK_RELEASE:- " 2024.2 " }
35
35
OPENSTACK_ENABLE_HORIZON=${OPENSTACK_ENABLE_HORIZON:- " false" }
36
36
37
37
# Devstack will create a provider network using this range
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function create_vm {
95
95
--zone " $GCP_ZONE " \
96
96
--enable-nested-virtualization \
97
97
--image-project ubuntu-os-cloud \
98
- --image-family ubuntu-2204 -lts \
98
+ --image-family ubuntu-2404 -lts-amd64 \
99
99
--boot-disk-size 200G \
100
100
--boot-disk-type pd-ssd \
101
101
--can-ip-forward \
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ set -x -o errexit -o nounset -o pipefail
25
25
26
26
function cloud_init {
27
27
LIBVIRT_NETWORK_NAME=${LIBVIRT_NETWORK_NAME:- ${CLUSTER_NAME} -network}
28
- LIBVIRT_IMAGE_NAME=${LIBVIRT_IMAGE_NAME:- ubuntu-2204 -lts}
28
+ LIBVIRT_IMAGE_NAME=${LIBVIRT_IMAGE_NAME:- ubuntu-2404 -lts}
29
29
30
30
LIBVIRT_MEMORY=${LIBVIRT_MEMORY:- 8192}
31
31
LIBVIRT_MEMORY_controller=${LIBVIRT_MEMORY_controller:- $LIBVIRT_MEMORY }
65
65
fi
66
66
67
67
if [ ! -f " /tmp/${LIBVIRT_IMAGE_NAME} .qcow2" ]; then
68
- curl -o " /tmp/${LIBVIRT_IMAGE_NAME} .qcow2" https://cloud-images.ubuntu.com/releases/jammy /release/ubuntu-22 .04-server-cloudimg-amd64.img
68
+ curl -o " /tmp/${LIBVIRT_IMAGE_NAME} .qcow2" https://cloud-images.ubuntu.com/releases/noble /release/ubuntu-24 .04-server-cloudimg-amd64.img
69
69
fi
70
70
}
71
71
You can’t perform that action at this time.
0 commit comments