Skip to content

Commit 19b9270

Browse files
authored
Merge pull request #104 from opencrvs/revert-103-switch-self-hosted-to-ubuntu
Revert "switch self-hosted runners to ubuntu"
2 parents fdf1495 + 3be1409 commit 19b9270

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/cleanup-namespaces.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
discover_cleanup:
1010
name: List namespaces to cleanup
11-
runs-on: ubuntu-24.04
11+
runs-on: self-hosted
1212
outputs:
1313
namespaces: ${{ steps.discover_ns.outputs.namespaces }}
1414
steps:
@@ -45,7 +45,7 @@ jobs:
4545
printf '\t- %s\n' "${NAMESPACES_TO_CLEANUP[@]}"
4646
cleanup:
4747
needs: discover_cleanup
48-
runs-on: ubuntu-24.04
48+
runs-on: self-hosted
4949
if: ${{ needs.discover_cleanup.outputs.namespaces != '[""]' && needs.discover_cleanup.outputs.namespaces != '[]' && needs.discover_cleanup.outputs.namespaces != '' }}
5050
strategy:
5151
max-parallel: 10

.github/workflows/deploy-and-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ jobs:
321321
322322
cleanup-stack-k8s:
323323
needs: [test, debug]
324-
runs-on: ubuntu-24.04
324+
runs-on: [self-hosted]
325325
env:
326326
ENV: ${{ github.event.client_payload.stack || inputs.stack }}
327327
if: always() && needs.debug.outputs.keep_e2e == 'false' && needs.debug.outputs.runtime == 'k8s'

.github/workflows/deploy-deps-on-kubernetes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
deploy:
66
env:
77
ENV: e2e
8-
runs-on: ubuntu-24.04
8+
runs-on: [self-hosted]
99
steps:
1010
- name: Deploy with Helm
1111
run: |

.github/workflows/k8s-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
ENV: ${{ inputs.environment }}
4646
CORE_IMAGE_TAG: ${{ inputs.core-image-tag }}
4747
COUNTRYCONFIG_IMAGE_TAG: ${{ inputs.countryconfig-image-tag }}
48-
runs-on: ubuntu-24.04
48+
runs-on: [self-hosted]
4949
steps:
5050
# FYI: Repository is needed only due to single file: examples/dev/opencrvs-services/values.yaml
5151
- name: Checkout repo

.github/workflows/k8s-reset-data.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
environment: ${{ inputs.environment }}
2727
env:
2828
namespace: ${{ inputs.namespace }}
29-
runs-on: ubuntu-24.04
29+
runs-on:
30+
- self-hosted
3031
steps:
3132
- name: Get helm release values and Quote specific fields that are commonly numeric
3233
run: |

.github/workflows/k8s-seed-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
seed:
1919
env:
2020
ENV: ${{ inputs.environment }}
21-
runs-on: ubuntu-24.04
21+
runs-on: [self-hosted]
2222
steps:
2323
- name: Get helm release values and Quote specific fields that are commonly numeric
2424
run: |

0 commit comments

Comments
 (0)