Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/downgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ env:

jobs:
downgrade:
# We need to use a large runner so that we have known runner IPs
# It allows us to filter authorized IPs on the machines we spawn
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
env:
NAME: downgrade-${{ inputs.type }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lifecycle-promoted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ env:

jobs:
snapshot-upgrade:
# We need to use a large runner so that we have known runner IPs
# It allows us to filter authorized IPs on the machines we spawn
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
strategy:
fail-fast: false
matrix:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/multi-node-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ env:

jobs:
multi-node:
# We need to use a large runner so that we have known runner IPs
# It allows us to filter authorized IPs on the machines we spawn
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
env:
SSH_PRIVATE_KEY: "~/.ssh/terraform"
NODES_COUNT: ${{ inputs.nodes-count }}
Expand Down Expand Up @@ -374,9 +374,9 @@ jobs:
destroy-multi-node-cluster:
needs:
- multi-node
# We need to use a large runner so that we have known runner IPs
# It allows us to filter authorized IPs on the machines we spawn
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
if: always()
steps:
- name: Checkout
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/single-node-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ env:

jobs:
single-node:
# We need to use a large runner so that we have known runner IPs
# It allows us to filter authorized IPs on the machines we spawn
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
env:
SSH_PRIVATE_KEY: "~/.ssh/terraform"
steps:
Expand Down Expand Up @@ -290,7 +290,9 @@ jobs:
destroy-single-node-cluster:
needs:
- single-node
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
if: always()
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ env:

jobs:
upgrade:
# We need to use a large runner so that we have known runner IPs
# It allows us to filter authorized IPs on the machines we spawn
runs-on: ubuntu-24.04-4core
# We need to use those specific gcloud runner so that we have
# known runner IPs
runs-on: [self-hosted, ubuntu, large, jammy, gcloud]
env:
NAME: upgrade-${{ inputs.type }}
steps:
Expand Down
Loading