Skip to content

Commit 531c404

Browse files
committed
ci: Update Helm install command with timeout
1 parent 5720465 commit 531c404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-http-add-on.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
run: helm template http-add-on ./http-add-on/ --namespace keda --values test-values.yaml
110110

111111
- name: Install Helm chart
112-
run: helm install http-add-on ./http-add-on/ --namespace keda --values test-values.yaml --wait
112+
run: helm install http-add-on ./http-add-on/ --namespace keda --values test-values.yaml --wait --timeout 15m
113113

114114
- name: Show Kubernetes resources
115115
run: kubectl get all --namespace keda
@@ -133,7 +133,7 @@ jobs:
133133
do
134134
READY=$(kubectl get so/keda-add-ons-http-interceptor -n keda -o jsonpath='{.status.conditions[?(@.type=="Ready")].status}')
135135
echo "ScaledObjet is ready: $READY"
136-
if [[ "$READY" == "True" ]]; then
136+
if [[ "$READY" == "True" ]]; then
137137
exit 0
138138
fi
139139
sleep 15s

0 commit comments

Comments
 (0)