diff --git a/.github/actions/setup-greptimedb-cluster/action.yml b/.github/actions/setup-greptimedb-cluster/action.yml index 709738b7c85c..91a02363a3e4 100644 --- a/.github/actions/setup-greptimedb-cluster/action.yml +++ b/.github/actions/setup-greptimedb-cluster/action.yml @@ -58,17 +58,22 @@ runs: - name: Wait for GreptimeDB shell: bash run: | + sleep 5s kubectl get pods -n my-greptimedb kubectl wait \ --for=condition=Ready \ pod -l app.greptime.io/component=my-greptimedb-meta \ --timeout=120s \ -n my-greptimedb + sleep 5s + kubectl get pods -n my-greptimedb kubectl wait \ --for=condition=Ready \ pod -l app.greptime.io/component=my-greptimedb-datanode \ --timeout=120s \ -n my-greptimedb + sleep 5s + kubectl get pods -n my-greptimedb kubectl wait \ --for=condition=Ready \ pod -l app.greptime.io/component=my-greptimedb-frontend \