Skip to content

Commit 09fa0e0

Browse files
authored
Merge pull request #1698 from stackhpc/increase-pulp-retries
feat: increase default number of retries for checking `Pulp` status
2 parents 3d8c704 + 8ebb801 commit 09fa0e0

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

etc/kayobe/containers/pulp/post.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
url: "{{ pulp_url }}/pulp/api/v3/status/"
55
register: pulp_status
66
until: pulp_status is success
7-
retries: "{{ pulp_timeout_retries | default(30) }}"
7+
retries: "{{ pulp_timeout_retries | default(120) }}"
88
delay: "{{ pulp_timeout_delay | default(3) }}"
99

1010
- name: Set the Pulp admin password
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
features:
3+
- |
4+
Increase the number of retries when waiting for Pulp to become ready.
5+
This is to avoid issues with Pulp taking longer than expected to start up.

0 commit comments

Comments
 (0)