Skip to content

Commit da6130a

Browse files
Merge branch 'master' into chore/drop-py39-fresh
2 parents b164543 + 3b64d73 commit da6130a

File tree

11 files changed

+9
-31
lines changed

11 files changed

+9
-31
lines changed

.github/actions/create-cluster/action.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,10 @@ inputs:
1313
runs:
1414
using: "composite"
1515
steps:
16-
- name: Prepare host storage directory
17-
shell: bash
18-
run: |
19-
set -euo pipefail
20-
sudo mkdir -p /mnt/local-path-provisioner
21-
2216
- name: Create k8s Kind Cluster
2317
uses: container-tools/kind-action@v2
2418
with:
2519
cluster_name: ${{ inputs.cluster_name }}
2620
kubectl_version: ${{ inputs.k8s_version }}
2721
version: v0.25.0
2822
node_image: kindest/node:${{ inputs.k8s_version }}
29-
config: .github/actions/create-cluster/kind-config.yaml
30-
31-
- name: Configure Local Path Provisioner to use /mnt and root
32-
shell: bash
33-
run: |
34-
set -euo pipefail
35-
# Patch local-path-provisioner config to prefer /mnt, but allow default root path
36-
kubectl -n local-path-storage patch configmap local-path-config --type merge \
37-
-p '{"data":{"config.json":"{\"nodePathMap\":[{\"node\":\"DEFAULT_PATH_FOR_NON_LISTED_NODES\",\"paths\":[\"/mnt/local-path-provisioner\",\"/var/local-path-provisioner\"]}]}"}}'
38-
# Restart local-path-provisioner to pick up the new config
39-
kubectl -n local-path-storage rollout restart deploy/local-path-provisioner

.github/actions/create-cluster/kind-config.yaml

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

.github/workflows/api-server-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ on:
3434
pull_request:
3535
paths:
3636
- '.github/workflows/api-server-tests.yml'
37+
- '.github/actions/create-cluster/**'
3738
- '.github/resources/**'
3839
- 'backend/api/v2beta1/**'
3940
- 'backend/src/**'

.github/workflows/e2e-test-frontend.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
paths:
99
- '.github/workflows/e2e-test-frontend.yml'
10+
- '.github/actions/create-cluster/**'
1011
- 'frontend/**'
1112
- 'manifests/kustomize/**'
1213
- '!**/*.md'

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
pull_request:
1515
paths:
1616
- '.github/workflows/e2e-test.yml'
17+
- '.github/actions/create-cluster/**'
1718
- '.github/resources/**'
1819
- 'api/**'
1920
- 'go.mod'

.github/workflows/integration-tests-v1.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
paths:
99
- '.github/workflows/api-integration-tests-v1.yml'
10+
- '.github/actions/create-cluster/**'
1011
- '.github/resources/**'
1112
- 'api/**'
1213
- 'go.mod'

.github/workflows/kfp-kubernetes-execution-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
paths:
99
- '.github/workflows/kfp-kubernetes-execution-tests.yml'
10+
- '.github/actions/create-cluster/**'
1011
- '.github/resources/**'
1112
- 'sdk/python/**'
1213
- 'api/v2alpha1/**'

.github/workflows/kfp-webhooks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- master
77
pull_request:
88
paths:
9+
- '.github/actions/create-cluster/**'
910
- '.github/resources/**'
1011
- '.github/workflows/kfp-webhooks.yml'
1112
- 'backend/**'

.github/workflows/legacy-v2-api-integration-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
paths:
99
- '.github/workflows/legacy-v2-api-integration-tests.yml'
10+
- '.github/actions/create-cluster/**'
1011
- '.github/resources/**'
1112
- 'api/**'
1213
- 'go.mod'

.github/workflows/sdk-execution.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
pull_request:
88
paths:
99
- '.github/workflows/sdk-execution.yml'
10+
- '.github/actions/create-cluster/**'
1011
- '.github/resources/**'
1112
- 'sdk/python/**'
1213
- 'api/v2alpha1/**'

0 commit comments

Comments
 (0)