Skip to content

Commit 5d58cbc

Browse files
committed
Add status check to azurite
1 parent 806263e commit 5d58cbc

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

templates/github/.ci/ansible/start_container.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,18 @@
6262
when: "s3_test | default(false)"
6363

6464
- block:
65+
- name: "Wait for azurite"
66+
ansible.builtin.uri:
67+
url: "http://ci-azurite:10000/"
68+
status_code:
69+
- 200
70+
- 400
71+
when: "azure_test | default(false)"
72+
retries: 2
73+
delay: 5
74+
6575
- name: "Wait for Pulp"
66-
uri:
76+
ansible.builtin.uri:
6777
url: "http://pulp{{ pulp_scenario_settings.api_root | default(pulp_settings.api_root | default('\/pulp\/', True), True) }}api/v3/status/"
6878
follow_redirects: "all"
6979
validate_certs: "no"

0 commit comments

Comments
 (0)