Skip to content

Commit cdb8163

Browse files
Disable deep image inspection
Flatcar images seem to be GPT non compliant. See: https://bugs.launchpad.net/nova/+bug/2091114 for details. Signed-off-by: Gabriel Adrian Samfira <[email protected]>
1 parent 4f18d8c commit cdb8163

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

hack/run-integration-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ IMAGE_NAME="${IMAGE_OS}-kube-${KUBE_TAG}"
3232
# If `BUILD_NEW_IMAGE` is true, then we use the provided artifact, otherwise
3333
# we download the latest promoted image.
3434
if [[ "${BUILD_NEW_IMAGE,,}" != "true" ]]; then
35-
curl -LO https://object-storage.public.mtl1.vexxhost.net/swift/v1/a91f106f55e64246babde7402c21b87a/magnum-capi/${IMAGE_NAME}.qcow2
35+
curl --fail -LO https://object-storage.public.mtl1.vexxhost.net/swift/v1/a91f106f55e64246babde7402c21b87a/magnum-capi/${IMAGE_NAME}.qcow2
3636
else
3737
test -f ${IMAGE_NAME}.qcow2 || exit 1
3838
fi

hack/stack.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ kubernetes_allowed_network_drivers = calico,cilium
9797
kubernetes_default_network_driver = calico
9898
[nova_client]
9999
api_version = 2.15
100+
101+
# See bug: https://bugs.launchpad.net/nova/+bug/2091114
102+
# Needs discussion with Flatcar team.
103+
[[post-config|/etc/nova/nova-cpu.conf]]
104+
[workarounds]
105+
disable_deep_image_inspection = true
100106
EOF
101107

102108
# Start DevStack deployment

0 commit comments

Comments
 (0)