Skip to content

Commit

Permalink
change wait condition again
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Apr 22, 2024
1 parent d85665a commit da3e1fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/run-deployment-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,15 @@ runs:
shell: bash
run: |
helm repo add hashicorp https://helm.releases.hashicorp.com
helm install vault hashicorp/vault \
-f system-tests/helm/values-vault-test.yaml \
--wait -for-jobs --timeout=120s --dependency-update
echo "Wait for Vault pod to become ready"
kubectl wait --for=condition=Ready pod/vault-0
kubectl wait --for=condition=ready pod \
--selector=app.kubernetes.io/name=vault \
--timeout=90s
- name: Install Runtime
shell: bash
Expand Down

0 comments on commit da3e1fd

Please sign in to comment.