Skip to content

Commit

Permalink
Add permission to run sh file
Browse files Browse the repository at this point in the history
Signed-off-by: hansinikarunarathne <107214435+hansinikarunarathne@users.noreply.github.com>
  • Loading branch information
hansinikarunarathne committed Jul 27, 2024
1 parent a964546 commit ca62f8b
Show file tree
Hide file tree
Showing 22 changed files with 69 additions and 25 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/admission_webhook_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/bentoml_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/centraldashboard_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh

run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dex_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/jupyter_web_application_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/katib_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/kserve_cni_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/kserve_m2m_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kubectl
run: ./tests/gh-actions/install_kubectl.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/kserve_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/metacontroller_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: kind create cluster --config ./tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/model_registry_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kubectl
run: ./tests/gh-actions/install_kubectl.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/notebook_controller_m2m_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kubectl
run: ./tests/gh-actions/install_kubectl.sh
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/notebook_controller_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh

run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pipeline_run_from_notebook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pipeline_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/profiles_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ray_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh

run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/seldon_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tensorboard_controller_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tensorboards_web_application_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/training_operator_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/volumes_web_application_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: kind create cluster --config tests/gh-actions/kind-cluster.yaml

- name: Install Calico
run: ./tests/gh-actions/install_calico.sh
run: |
chmod +x ./tests/gh-actions/install_calico.sh
./tests/gh-actions/install_calico.sh
- name: Install kustomize
run: ./tests/gh-actions/install_kustomize.sh
Expand Down

0 comments on commit ca62f8b

Please sign in to comment.