From f9c47abf09d33bba014bf52834c7e5daeee5e5ef Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Mon, 30 Jun 2025 12:10:32 -0500 Subject: [PATCH] fix: switch Cinder and Placement to quay.io images The other OpenStack Helm images have already switched to using quay.io as the source of images. --- components/images-openstack.yaml | 4 ++-- containers/cinder/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/images-openstack.yaml b/components/images-openstack.yaml index 3a23ebf85..04a63ba03 100644 --- a/components/images-openstack.yaml +++ b/components/images-openstack.yaml @@ -64,8 +64,8 @@ images: nova_service_cleaner: "docker.io/openstackhelm/ceph-config-helper:latest-ubuntu_jammy" # placement - placement: "docker.io/openstackhelm/placement:2024.2-ubuntu_jammy" - placement_db_sync: "docker.io/openstackhelm/placement:2024.2-ubuntu_jammy" + placement: "quay.io/airshipit/placement:2024.2-ubuntu_jammy" + placement_db_sync: "quay.io/airshipit/placement:2024.2-ubuntu_jammy" # openvswitch openvswitch_db_server: "docker.io/openstackhelm/openvswitch:ubuntu_jammy-dpdk-20250127" diff --git a/containers/cinder/Dockerfile b/containers/cinder/Dockerfile index 1029b585f..952681249 100644 --- a/containers/cinder/Dockerfile +++ b/containers/cinder/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 ARG OPENSTACK_VERSION="required_argument" -FROM docker.io/openstackhelm/cinder:${OPENSTACK_VERSION}-ubuntu_jammy AS builder +FROM quay.io/airshipit/cinder:${OPENSTACK_VERSION}-ubuntu_jammy AS builder COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ @@ -11,7 +11,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ cd /tmp/cinder-understack && \ uv build --wheel --out-dir /tmp/wheels/ -FROM docker.io/openstackhelm/cinder:${OPENSTACK_VERSION}-ubuntu_jammy AS final +FROM quay.io/airshipit/cinder:${OPENSTACK_VERSION}-ubuntu_jammy AS final RUN --mount=type=cache,target=/root/.cache/pip \ --mount=from=builder,source=/tmp/wheels,target=/tmp/wheels \