From c52e44bf1e77df42c23540c2c16c1dadddbed59b Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Fri, 26 Apr 2024 15:33:12 -0400 Subject: [PATCH] Make file names consistent There were a bunch of different naming conventions being used in the files. This makes the different files consistent. I.e. we always use the `centos-stream-N` convention and we place the `-rt` modifier at the end so it's listed right beside the non-rt version. --- .github/workflows/build-image.yml | 4 ++-- ...inerfile.centos-stream10 => Containerfile.centos-stream-10 | 2 +- Containerfile.centos-stream9 => Containerfile.centos-stream-9 | 0 ...os-tier-0-rt-stream9.yaml => centos-stream-9-tier0-rt.yaml | 0 centos-tier-0-stream9.yaml => centos-stream-9-tier0.yaml | 0 ...os-tier-1-rt-stream9.yaml => centos-stream-9-tier1-rt.yaml | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename Containerfile.centos-stream10 => Containerfile.centos-stream-10 (96%) rename Containerfile.centos-stream9 => Containerfile.centos-stream-9 (100%) rename centos-tier-0-rt-stream9.yaml => centos-stream-9-tier0-rt.yaml (100%) rename centos-tier-0-stream9.yaml => centos-stream-9-tier0.yaml (100%) rename centos-tier-1-rt-stream9.yaml => centos-stream-9-tier1-rt.yaml (100%) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index c7fe5fe0..38eb54bc 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -15,9 +15,9 @@ jobs: matrix: include: - os: centos - version: stream9 + version: stream-9 - os: centos - version: stream10 + version: stream-10 steps: - name: Update podman diff --git a/Containerfile.centos-stream10 b/Containerfile.centos-stream-10 similarity index 96% rename from Containerfile.centos-stream10 rename to Containerfile.centos-stream-10 index d54df79f..471344f5 100644 --- a/Containerfile.centos-stream10 +++ b/Containerfile.centos-stream-10 @@ -1,4 +1,4 @@ -# See Containerfile.centos-stream9 for more information. +# See Containerfile.centos-stream-9 for more information. FROM quay.io/centos/centos:stream10-development as repos diff --git a/Containerfile.centos-stream9 b/Containerfile.centos-stream-9 similarity index 100% rename from Containerfile.centos-stream9 rename to Containerfile.centos-stream-9 diff --git a/centos-tier-0-rt-stream9.yaml b/centos-stream-9-tier0-rt.yaml similarity index 100% rename from centos-tier-0-rt-stream9.yaml rename to centos-stream-9-tier0-rt.yaml diff --git a/centos-tier-0-stream9.yaml b/centos-stream-9-tier0.yaml similarity index 100% rename from centos-tier-0-stream9.yaml rename to centos-stream-9-tier0.yaml diff --git a/centos-tier-1-rt-stream9.yaml b/centos-stream-9-tier1-rt.yaml similarity index 100% rename from centos-tier-1-rt-stream9.yaml rename to centos-stream-9-tier1-rt.yaml