Skip to content

Commit dc8cd09

Browse files
committed
Merge branch 'improvement/drop-rhel8-tests' into tmp/octopus/w/132.0/improvement/drop-rhel8-tests
2 parents 261b48d + a4e7044 commit dc8cd09

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
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/build.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
skip: ${{ inputs.skip-devcontainer == true }}
4040

4141
build:
42-
runs-on: ubuntu-latest
42+
# Use our self hosted runner since the github ones have not enough disk space
43+
# (the disk is almost full even before building anything)
44+
runs-on: ubuntu-24.04-4core
4345
needs:
4446
- build-devcontainer
4547
container:

.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()

0 commit comments

Comments
 (0)