diff --git a/.github/actions/run-deployment-test/action.yml b/.github/actions/run-deployment-test/action.yml index 3f09f69..0c1add7 100644 --- a/.github/actions/run-deployment-test/action.yml +++ b/.github/actions/run-deployment-test/action.yml @@ -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