Skip to content

Commit 4aede49

Browse files
Merge pull request #5470 from ggiguash/disable-rhel94
USHIFT-6084: Disable rhel94 images and scenarios
2 parents 1bb97f2 + a662e0b commit 4aede49

20 files changed

+26
-71
lines changed

test/bin/build_images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ get_blueprint_name() {
124124
# rhel92-microshift-source -> rhel-9.2
125125
#
126126
# The function also supports an explicit parent override directive in the
127-
# blueprint in the following format: '# parent = rhel-9.4-microshift-4.17'.
127+
# blueprint in the following format: '# parent = rhel-9.6-microshift-4.17'.
128128
# Note that the directive must be commented out in the blueprint to avoid
129129
# composer syntax errors.
130130
#

test/bin/scenario.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ source "${SCRIPTDIR}/common_versions.sh"
1818
# shellcheck source=test/bin/scenario_container.sh
1919
source "${SCRIPTDIR}/scenario_container.sh"
2020

21-
DEFAULT_BOOT_BLUEPRINT="rhel-9.4"
21+
DEFAULT_BOOT_BLUEPRINT="rhel-9.6"
2222
LVM_SYSROOT_SIZE="15360"
2323
PULL_SECRET="${PULL_SECRET:-${HOME}/.pull-secret.json}"
2424
PULL_SECRET_CONTENT="$(jq -c . "${PULL_SECRET}")"

test/image-blueprints-bootc/layer1-base/group1/rhel94-test-agent.containerfile

Lines changed: 0 additions & 20 deletions
This file was deleted.

test/image-blueprints-bootc/layer1-base/group2/rhel94-bootc.image-bootc

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/image-blueprints-bootc/layer1-base/group2/rhel94-bootc-brew-y2-with-optional.containerfile renamed to test/image-blueprints-bootc/layer1-base/group2/rhel96-bootc-brew-y2-with-optional.containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# {{- if env.Getenv "BREW_Y2_RELEASE_VERSION" "" -}}
22
# Note: This comment makes templating add a new line before the code
3-
FROM localhost/rhel94-test-agent:latest
3+
FROM localhost/rhel96-test-agent:latest
44

55
# Build arguments
66
ARG USHIFT_RPM_REPO_NAME=microshift-brew

test/image-blueprints-bootc/layer1-base/group2/rhel94-bootc-yminus2.containerfile renamed to test/image-blueprints-bootc/layer1-base/group2/rhel96-bootc-yminus2.containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM localhost/rhel94-test-agent:latest
1+
FROM localhost/rhel96-test-agent:latest
22

33
# Copy repository configuration
44
COPY ./bootc-images/microshift-fast-datapath-rhel9.repo /bootc-images/microshift-rhocp-y2.repo \

test/image-blueprints/layer1-base/group1/rhel94.toml

Lines changed: 0 additions & 23 deletions
This file was deleted.

test/image-blueprints/layer1-base/group2/rhel94-brew-y2-with-optionals.toml renamed to test/image-blueprints/layer1-base/group2/rhel96-brew-y2-with-optionals.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
*/ -}}
1010

11-
name = "rhel-9.4-microshift-brew-optionals-4.{{ .Env.YMINUS2_MINOR_VERSION }}-zstream"
12-
description = "A RHEL 9.4 image with already built and released RPMs like EC, RC, or Z-stream release: {{ .Env.BREW_Y2_RELEASE_VERSION }}"
11+
name = "rhel-9.6-microshift-brew-optionals-4.{{ .Env.YMINUS2_MINOR_VERSION }}-zstream"
12+
description = "A RHEL 9.6 image with already built and released RPMs like EC, RC, or Z-stream release: {{ .Env.BREW_Y2_RELEASE_VERSION }}"
1313
version = "0.0.1"
1414
modules = []
1515
groups = []
16-
distro = "rhel-94"
16+
distro = "rhel-96"
1717

1818
{{ range (env.Getenv "MICROSHIFT_MANDATORY_RPMS" | strings.Split " ") }}
1919
[[packages]]

test/image-blueprints/layer1-base/group2/rhel94-microshift-yminus2.toml renamed to test/image-blueprints/layer1-base/group2/rhel96-microshift-yminus2.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name = "rhel-9.4-microshift-4.{{ .Env.YMINUS2_MINOR_VERSION }}"
2-
description = "RHEL 9.4 with MicroShift from two minor versions back installed."
1+
name = "rhel-9.6-microshift-4.{{ .Env.YMINUS2_MINOR_VERSION }}"
2+
description = "RHEL 9.6 with MicroShift from two minor versions back installed."
33
version = "0.0.1"
44
modules = []
55
groups = []
6-
distro = "rhel-94"
6+
distro = "rhel-96"
77

88
{{ range (env.Getenv "MICROSHIFT_MANDATORY_RPMS" | strings.Split " ") }}
99
[[packages]]

test/image-blueprints/layer1-base/group3/rhel96-brew-y1-with-optionals.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ distro = "rhel-96"
1717

1818
# Parent specification directive recognized by test/bin/build_images.sh to be
1919
# used with the '--parent' argument of 'osbuild-composer'
20-
# parent = "rhel-9.4-microshift-brew-optionals-4.{{ .Env.YMINUS2_MINOR_VERSION }}-zstream"
20+
# parent = "rhel-9.6-microshift-brew-optionals-4.{{ .Env.YMINUS2_MINOR_VERSION }}-zstream"
2121

2222
{{ range (env.Getenv "MICROSHIFT_MANDATORY_RPMS" | strings.Split " ") }}
2323
[[packages]]

0 commit comments

Comments
 (0)