diff --git a/.github/workflows/kind-cloud.yaml b/.github/workflows/kind-cloud.yaml index 2185474..e8995ab 100644 --- a/.github/workflows/kind-cloud.yaml +++ b/.github/workflows/kind-cloud.yaml @@ -29,7 +29,7 @@ jobs: id: install-kerberos-hub run: | kubectl create namespace kerberos-hub - helm install hub ./ --values charts/hub/values.yaml -n kerberos-hub --create-namespace + helm install hub ./charts/hub --values charts/hub/values.yaml -n kerberos-hub --create-namespace echo "Sleeping for 300 seconds, give time for the helm chart to create the pods" && sleep 300 kubectl get pods -A -o wide kubectl get pods -A -o wide | grep hub-frontend | awk '{print $3}' | grep -q '1/1' && echo "hub-frontend pod is running with status 1/1" || (echo "kerberos-hub pod is not running with status 1/1" && exit 1) diff --git a/.github/workflows/microk8s.yaml b/.github/workflows/microk8s.yaml index 98b5ad7..1752801 100644 --- a/.github/workflows/microk8s.yaml +++ b/.github/workflows/microk8s.yaml @@ -30,7 +30,7 @@ jobs: id: install-kerberos-hub run: | kubectl create namespace kerberos-hub - helm install hub ./ --values charts/hub/values.yaml -n kerberos-hub --create-namespace + helm install hub ./charts/hub --values charts/hub/values.yaml -n kerberos-hub --create-namespace echo "Sleeping for 300 seconds, give time for the helm chart to create the pods" && sleep 300 kubectl get pods -A -o wide kubectl get pods -A -o wide | grep hub-frontend | awk '{print $3}' | grep -q '1/1' && echo "hub-frontend pod is running with status 1/1" || (echo "kerberos-hub pod is not running with status 1/1" && exit 1)