Skip to content

Commit

Permalink
change values.yaml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricve committed Nov 27, 2024
1 parent 9b8050a commit a75358a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/kind-cloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [opened, synchronize, reopened]

jobs:
deploy-kind:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -29,7 +29,7 @@ jobs:
id: install-kerberos-hub
run: |
kubectl create namespace kerberos-hub
helm install hub ./ --values kerberos-hub-values.yaml -n kerberos-hub --create-namespace
helm install hub ./ --values 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)
4 changes: 2 additions & 2 deletions .github/workflows/microk8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [opened, synchronize, reopened]

jobs:
deploy-microk8s:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -30,7 +30,7 @@ jobs:
id: install-kerberos-hub
run: |
kubectl create namespace kerberos-hub
helm install hub ./ --values kerberos-hub-values.yaml -n kerberos-hub --create-namespace
helm install hub ./ --values 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)

0 comments on commit a75358a

Please sign in to comment.