Skip to content

Commit

Permalink
add wait action
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfish.zhang committed Aug 2, 2023
1 parent e61214f commit 98c0c56
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/e2e_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,22 @@ jobs:
if: ${{ always() }}
run: |
kubectl apply --server-side -f config/risingwave-operator.yaml
- name: Wait Operator
shell: bash
working-directory: ./
if: ${{ always() }}
run: |
kubectl wait --for=condition=Ready Pods --all --namespace risingwave-operator-system --timeout=5m
- name: Apply Minio RisingWave
shell: bash
working-directory: ./
if: ${{ always() }}
run: |
kubectl apply -f docs/manifests/risingwave/risingwave-etcd-minio.yaml
kubectl create namespace risingwave-etcd-minio
kubectl apply -f docs/manifests/risingwave/risingwave-etcd-minio.yaml -n risingwave-etcd-minio
- name: Wait Minio RisingWave
shell: bash
working-directory: ./
if: ${{ always() }}
run: |
kubectl wait --for=condition=Ready Pods --all --namespace risingwave-etcd-minio --timeout=5m

0 comments on commit 98c0c56

Please sign in to comment.