Skip to content

Commit

Permalink
Don't wait for agent to be ready (for now) (#54)
Browse files Browse the repository at this point in the history
Signed-off-by: Jirka Kremser <jiri.kremser@gmail.com>
  • Loading branch information
jkremser authored and Kedify Bot committed Jan 27, 2025
1 parent 9d1ce1e commit f09e55b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/gh-release-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ jobs:
kubectl wait --timeout=300s -nkeda --for=condition=ready pod -lapp.kubernetes.io/name=keda-admission-webhooks
kubectl wait --timeout=300s -nkeda --for=condition=ready pod -lapp.kubernetes.io/name=keda-operator-metrics-apiserver
kubectl wait --timeout=300s -nkeda --for=condition=ready pod -lapp.kubernetes.io/name=keda-operator
echo -e "\n\n\n pods:\n\n"
kubectl get pods -A
- name: Smoke test helm rendering and deployability (addon chart)
if: inputs.chart == 'http-add-on'
Expand All @@ -71,8 +69,6 @@ jobs:
kubectl wait --timeout=600s -nkeda --for=condition=ready pod -lapp.kubernetes.io/component=operator,app.kubernetes.io/part-of=keda-add-ons-http
kubectl wait --timeout=600s -nkeda --for=condition=ready pod -lapp.kubernetes.io/component=scaler,app.kubernetes.io/part-of=keda-add-ons-http
kubectl wait --timeout=600s -nkeda --for=condition=ready pod -lapp.kubernetes.io/component=interceptor,app.kubernetes.io/part-of=keda-add-ons-http
echo -e "\n\n\n pods:\n\n"
kubectl get pods -A
- name: Smoke test helm rendering and deployability (kedify agent chart)
if: inputs.chart == 'kedify-agent'
run: |
Expand All @@ -85,7 +81,11 @@ jobs:
--set agent.apiKey=kfy_facefaceface424242d0f7e1963c7d542aee9d62b66c4c705ec70108655b3c000 \
--set agent.orgId=9151f21f-42ab-42ab-42ab-f4af67cddf54 | kubectl apply -f -
sleep 10
kubectl rollout status --timeout=300s -nkeda deploy/kedify-agent
# todo:
# kubectl rollout status --timeout=300s -nkeda deploy/kedify-agent
- name: Check pods
if: always()
run: |
sleep 5
echo -e "\n\n\n pods:\n\n"
kubectl get pods -A
Expand Down Expand Up @@ -200,7 +200,8 @@ jobs:
set +x
[ "$i" = "16" ] && exit 1
done
kubectl rollout status --timeout=300s -nkeda deploy/kedify-agent
# todo:
# kubectl rollout status --timeout=300s -nkeda deploy/kedify-agent
echo -e "\n\n\n pods:\n\n"
kubectl get pods -A
Expand Down

0 comments on commit f09e55b

Please sign in to comment.