We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e01f23e commit 03ef6bbCopy full SHA for 03ef6bb
etc/kayobe/ansible/roles/pulp_auth_proxy/tasks/main.yml
@@ -45,3 +45,11 @@
45
restart: "{{ pulp_proxy_conf is changed }}"
46
volumes:
47
- "{{ pulp_auth_proxy_conf_path }}/pulp_proxy.conf:/etc/nginx/conf.d/default.conf:ro"
48
+
49
+- name: Wait for pulp_proxy container to become accessible
50
+ ansible.builtin.uri:
51
+ url: http://localhost/pulp/api/v3/status/
52
+ register: uri_result
53
+ until: uri_result is success
54
+ retries: 30
55
+ delay: 2
0 commit comments