From eb71457f6f3a80ac6c0f14b1e4c050fe9022b8ac Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 18 Apr 2024 16:17:04 -0400 Subject: [PATCH] build: Rename centos-bootc.yaml to centos-stream-9-tier-1.yaml When we went back to the "one big image" model we simplified things to just `centos-bootc.yaml`. But since stream10 is here, and I think we do want to revisit having smaller images, let's rename it back. Signed-off-by: Colin Walters --- .tekton/centos-bootc-pull-request.yaml | 2 +- .tekton/centos-bootc-push.yaml | 2 +- Containerfile.centos-stream9 | 2 +- centos-bootc.yaml => centos-stream-9-tier1.yaml | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename centos-bootc.yaml => centos-stream-9-tier1.yaml (100%) diff --git a/.tekton/centos-bootc-pull-request.yaml b/.tekton/centos-bootc-pull-request.yaml index 29305cb..c9e8c0e 100644 --- a/.tekton/centos-bootc-pull-request.yaml +++ b/.tekton/centos-bootc-pull-request.yaml @@ -19,7 +19,7 @@ metadata: spec: params: - name: image-file - value: centos-bootc.yaml + value: centos-stream-9-tier1.yaml - name: git-url value: "{{repo_url}}" - name: output-image diff --git a/.tekton/centos-bootc-push.yaml b/.tekton/centos-bootc-push.yaml index f40de21..4db955a 100644 --- a/.tekton/centos-bootc-push.yaml +++ b/.tekton/centos-bootc-push.yaml @@ -19,7 +19,7 @@ metadata: spec: params: - name: image-file - value: centos-bootc.yaml + value: centos-stream-9-tier1.yaml - name: git-url value: "{{repo_url}}" - name: output-image diff --git a/Containerfile.centos-stream9 b/Containerfile.centos-stream9 index 556bced..4bdf46b 100644 --- a/Containerfile.centos-stream9 +++ b/Containerfile.centos-stream9 @@ -26,7 +26,7 @@ FROM quay.io/centos/centos:stream9 as repos FROM quay.io/centos-bootc/bootc-image-builder:latest as builder -ARG MANIFEST=centos-bootc.yaml +ARG MANIFEST=centos-stream-9-tier1.yaml # XXX: we should just make sure our in-tree c9s repo points to the c9s paths and doesn't require vars to avoid these steps entirely COPY --from=repos /etc/dnf/vars /etc/dnf/vars COPY --from=repos /etc/yum.repos.d/centos.repo c9s.repo diff --git a/centos-bootc.yaml b/centos-stream-9-tier1.yaml similarity index 100% rename from centos-bootc.yaml rename to centos-stream-9-tier1.yaml