Skip to content
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
4 changes: 2 additions & 2 deletions components/images-openstack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions containers/cinder/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/

Expand All @@ -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 \
Expand Down