Skip to content

Commit 6329bbe

Browse files
author
Yoan Moscatelli
committed
🔥 drop rhel8 tests
1 parent b5b71bc commit 6329bbe

File tree

6 files changed

+5
-18
lines changed

6 files changed

+5
-18
lines changed

.github/actions/spawn-cluster/action.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,6 @@ inputs:
4747
required: false
4848
default: ""
4949

50-
rhsm-username:
51-
description: "The RHSM username to use (only needed on RedHat)"
52-
required: false
53-
default: ""
54-
rhsm-password:
55-
description: "The RHSM password to use (only needed on RedHat)"
56-
required: false
57-
default: ""
5850
AUTHORIZED_CIDRS:
5951
description: "List of CIDRs to allow SSH and ICMP ingress from"
6052
required: false
@@ -131,8 +123,6 @@ runs:
131123
TF_VAR_os: "${{ inputs.OS }}"
132124
TF_VAR_nodes_count: "${{ inputs.NODES_COUNT }}"
133125
TF_VAR_restore_env: "${{ inputs.RESTORE_ENV }}"
134-
TF_VAR_rhsm_username: "${{ inputs.rhsm-username }}"
135-
TF_VAR_rhsm_password: "${{ inputs.rhsm-password }}"
136126
TF_VAR_ingress_remote_ip_prefix: "${{ inputs.AUTHORIZED_CIDRS }}"
137127
TF_VAR_flavors_map: '{ ovh = { default = "d2-8", bastion = "b3-16" } }'
138128
MAX_RETRIES: "3"

.github/workflows/nightly.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ jobs:
179179
fail-fast: false
180180
matrix:
181181
os:
182-
- rhel-8
183182
# NOTE: We add rocky-8 here even if it's already tested in pre-merge since
184183
# we also test solution install + upgrade there
185184
- rocky-8

.github/workflows/single-node-test.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@ jobs:
120120
GIT_ACCESS_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}
121121
ARTIFACTS_USER: ${{ secrets.ARTIFACTS_USER }}
122122
ARTIFACTS_PASSWORD: ${{ secrets.ARTIFACTS_PASSWORD }}
123-
rhsm-username: ${{ secrets.RHSM_USERNAME }}
124-
rhsm-password: ${{ secrets.RHSM_PASSWORD }}
125123
AUTHORIZED_CIDRS: ${{ vars.AUTHORIZED_CIDRS }}
126124
- name: Save Terraform context
127125
if: always()

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Release 131.0.3 (in development)
44

5+
### Removals
6+
7+
- Drop RHEL 8 CI tests
8+
(PR[#4697](https://github.com/scality/metalk8s/pull/4697))
9+
510
## Release 131.0.2
611

712
### Enhancements

salt/tests/unit/formulas/config.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ metalk8s:
1818
_cases:
1919
"CentOS 8":
2020
os: CentOS/8
21-
"RHEL 8":
22-
os: RedHat/8
2321

2422
addons:
2523
dex:
@@ -905,8 +903,6 @@ metalk8s:
905903
_cases:
906904
"CentOS 8":
907905
os: CentOS/8
908-
"RHEL 8":
909-
os: RedHat/8
910906

911907
salt:
912908
master:

scripts/common.sh.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ determine_os() {
2424
. /etc/os-release
2525
OS=$ID
2626
OS_VERSION=$VERSION_ID
27-
[[ $OS = rhel ]] && OS=redhat
2827
[[ $OS = rocky ]] && OS=centos
2928
if [[ $OS =~ ^(redhat|centos)$ ]]; then
3029
OS_FAMILY=redhat

0 commit comments

Comments
 (0)