From ca62f8bdb369e12d6a9adf36539a3633925a3cd5 Mon Sep 17 00:00:00 2001 From: hansinikarunarathne <107214435+hansinikarunarathne@users.noreply.github.com> Date: Sat, 27 Jul 2024 14:35:28 +0530 Subject: [PATCH] Add permission to run sh file Signed-off-by: hansinikarunarathne <107214435+hansinikarunarathne@users.noreply.github.com> --- .github/workflows/admission_webhook_test.yaml | 4 +++- .github/workflows/bentoml_test.yaml | 4 +++- .github/workflows/centraldashboard_test.yaml | 6 ++++-- .github/workflows/dex_test.yaml | 4 +++- .github/workflows/jupyter_web_application_test.yaml | 4 +++- .github/workflows/katib_test.yaml | 4 +++- .github/workflows/kserve_cni_test.yaml | 4 +++- .github/workflows/kserve_m2m_test.yaml | 4 +++- .github/workflows/kserve_test.yaml | 4 +++- .github/workflows/metacontroller_test.yaml | 4 +++- .github/workflows/model_registry_test.yaml | 4 +++- .github/workflows/notebook_controller_m2m_test.yaml | 4 +++- .github/workflows/notebook_controller_test.yaml | 6 ++++-- .github/workflows/pipeline_run_from_notebook.yaml | 4 +++- .github/workflows/pipeline_test.yaml | 4 +++- .github/workflows/profiles_test.yaml | 4 +++- .github/workflows/ray_test.yaml | 6 ++++-- .github/workflows/seldon_test.yaml | 4 +++- .github/workflows/tensorboard_controller_test.yaml | 4 +++- .github/workflows/tensorboards_web_application_test.yaml | 4 +++- .github/workflows/training_operator_test.yaml | 4 +++- .github/workflows/volumes_web_application_test.yaml | 4 +++- 22 files changed, 69 insertions(+), 25 deletions(-) diff --git a/.github/workflows/admission_webhook_test.yaml b/.github/workflows/admission_webhook_test.yaml index 251ed61bc..c3e39b833 100644 --- a/.github/workflows/admission_webhook_test.yaml +++ b/.github/workflows/admission_webhook_test.yaml @@ -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 diff --git a/.github/workflows/bentoml_test.yaml b/.github/workflows/bentoml_test.yaml index 4a4d8396a..f047d2a3c 100644 --- a/.github/workflows/bentoml_test.yaml +++ b/.github/workflows/bentoml_test.yaml @@ -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 diff --git a/.github/workflows/centraldashboard_test.yaml b/.github/workflows/centraldashboard_test.yaml index 5e349a655..ef9dd4793 100644 --- a/.github/workflows/centraldashboard_test.yaml +++ b/.github/workflows/centraldashboard_test.yaml @@ -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 diff --git a/.github/workflows/dex_test.yaml b/.github/workflows/dex_test.yaml index 4f5e3638c..113a2bf23 100644 --- a/.github/workflows/dex_test.yaml +++ b/.github/workflows/dex_test.yaml @@ -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 diff --git a/.github/workflows/jupyter_web_application_test.yaml b/.github/workflows/jupyter_web_application_test.yaml index ee9d8bd22..30bbe7513 100644 --- a/.github/workflows/jupyter_web_application_test.yaml +++ b/.github/workflows/jupyter_web_application_test.yaml @@ -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 diff --git a/.github/workflows/katib_test.yaml b/.github/workflows/katib_test.yaml index 41861ace0..756ffef12 100644 --- a/.github/workflows/katib_test.yaml +++ b/.github/workflows/katib_test.yaml @@ -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 diff --git a/.github/workflows/kserve_cni_test.yaml b/.github/workflows/kserve_cni_test.yaml index 7ba674a08..9dd68885b 100644 --- a/.github/workflows/kserve_cni_test.yaml +++ b/.github/workflows/kserve_cni_test.yaml @@ -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 diff --git a/.github/workflows/kserve_m2m_test.yaml b/.github/workflows/kserve_m2m_test.yaml index e7d3bac7d..6b91e3676 100644 --- a/.github/workflows/kserve_m2m_test.yaml +++ b/.github/workflows/kserve_m2m_test.yaml @@ -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 diff --git a/.github/workflows/kserve_test.yaml b/.github/workflows/kserve_test.yaml index 05e24ff21..5b95b50c4 100644 --- a/.github/workflows/kserve_test.yaml +++ b/.github/workflows/kserve_test.yaml @@ -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 diff --git a/.github/workflows/metacontroller_test.yaml b/.github/workflows/metacontroller_test.yaml index e132fc999..28add2d60 100644 --- a/.github/workflows/metacontroller_test.yaml +++ b/.github/workflows/metacontroller_test.yaml @@ -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 diff --git a/.github/workflows/model_registry_test.yaml b/.github/workflows/model_registry_test.yaml index fee0328f1..3995fa653 100644 --- a/.github/workflows/model_registry_test.yaml +++ b/.github/workflows/model_registry_test.yaml @@ -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 diff --git a/.github/workflows/notebook_controller_m2m_test.yaml b/.github/workflows/notebook_controller_m2m_test.yaml index 170c41315..c18db65f4 100644 --- a/.github/workflows/notebook_controller_m2m_test.yaml +++ b/.github/workflows/notebook_controller_m2m_test.yaml @@ -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 diff --git a/.github/workflows/notebook_controller_test.yaml b/.github/workflows/notebook_controller_test.yaml index 15d313ea0..1e1aabafa 100644 --- a/.github/workflows/notebook_controller_test.yaml +++ b/.github/workflows/notebook_controller_test.yaml @@ -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 diff --git a/.github/workflows/pipeline_run_from_notebook.yaml b/.github/workflows/pipeline_run_from_notebook.yaml index d57d98b1e..7f36370ab 100644 --- a/.github/workflows/pipeline_run_from_notebook.yaml +++ b/.github/workflows/pipeline_run_from_notebook.yaml @@ -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 diff --git a/.github/workflows/pipeline_test.yaml b/.github/workflows/pipeline_test.yaml index 3b6202755..59565f6c5 100644 --- a/.github/workflows/pipeline_test.yaml +++ b/.github/workflows/pipeline_test.yaml @@ -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 diff --git a/.github/workflows/profiles_test.yaml b/.github/workflows/profiles_test.yaml index 665957bbf..e947ebfe9 100644 --- a/.github/workflows/profiles_test.yaml +++ b/.github/workflows/profiles_test.yaml @@ -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 diff --git a/.github/workflows/ray_test.yaml b/.github/workflows/ray_test.yaml index e810977e1..6bb093ae8 100644 --- a/.github/workflows/ray_test.yaml +++ b/.github/workflows/ray_test.yaml @@ -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 diff --git a/.github/workflows/seldon_test.yaml b/.github/workflows/seldon_test.yaml index cc37d0b69..687114fc3 100644 --- a/.github/workflows/seldon_test.yaml +++ b/.github/workflows/seldon_test.yaml @@ -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 diff --git a/.github/workflows/tensorboard_controller_test.yaml b/.github/workflows/tensorboard_controller_test.yaml index 5732388ea..45e0a3b1e 100644 --- a/.github/workflows/tensorboard_controller_test.yaml +++ b/.github/workflows/tensorboard_controller_test.yaml @@ -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 diff --git a/.github/workflows/tensorboards_web_application_test.yaml b/.github/workflows/tensorboards_web_application_test.yaml index b325c2b96..519793518 100644 --- a/.github/workflows/tensorboards_web_application_test.yaml +++ b/.github/workflows/tensorboards_web_application_test.yaml @@ -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 diff --git a/.github/workflows/training_operator_test.yaml b/.github/workflows/training_operator_test.yaml index db95dfbc9..53bfbd15b 100644 --- a/.github/workflows/training_operator_test.yaml +++ b/.github/workflows/training_operator_test.yaml @@ -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 diff --git a/.github/workflows/volumes_web_application_test.yaml b/.github/workflows/volumes_web_application_test.yaml index f2e96b58c..e6c71d416 100644 --- a/.github/workflows/volumes_web_application_test.yaml +++ b/.github/workflows/volumes_web_application_test.yaml @@ -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