Skip to content

Commit

Permalink
extend timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
kd7lxl committed Sep 5, 2023
1 parent b47e2c2 commit 08303e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,18 +118,18 @@ jobs:
make kind-load-konk KIND_NAME="chart-testing"
make deploy-crds deploy-konk-operator
- name: Test Konk
timeout-minutes: 6
timeout-minutes: 10
run: |
kubectl create ns $KONK_NAMESPACE || true
kubectl apply -n $KONK_NAMESPACE -f examples/konk.yaml
# FIXME: use the helm-operator status to detect installation was successful
until kubectl wait -n $KONK_NAMESPACE --timeout=3m --for=condition=ready pod -l app.kubernetes.io/name=etcd
until kubectl wait -n $KONK_NAMESPACE --timeout=1m --for=condition=ready pod -l app.kubernetes.io/name=etcd
do
sleep 1
sleep 6
done
until kubectl wait -n $KONK_NAMESPACE --timeout=3m --for=condition=ready pod -l app.kubernetes.io/component=apiserver,app.kubernetes.io/name=konk
until kubectl wait -n $KONK_NAMESPACE --timeout=1m --for=condition=ready pod -l app.kubernetes.io/component=apiserver,app.kubernetes.io/name=konk
do
sleep 1
sleep 6
done
make test-konk KONK_NAMESPACE=$KONK_NAMESPACE
make test-konk-local
Expand Down

0 comments on commit 08303e6

Please sign in to comment.