Skip to content

Commit

Permalink
tests: attempt to reduce flakiness in test-cert-manager-letsencrypt
Browse files Browse the repository at this point in the history
Change-Id: I6a32023d7c35256291800ff1b9b9de753020eda4
  • Loading branch information
morucci committed Oct 27, 2023
1 parent f5da65a commit f45fc60
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
register: result
until:
- result is success
- "'DNS problem: NXDOMAIN' in result.stdout"
- "'DNS problem: NXDOMAIN' in result.stdout or 'Waiting for HTTP-01 challenge propagation' in result.stdout or 'no such host' in result.stdout"
retries: 6
delay: 10

Expand All @@ -30,7 +30,7 @@
register: result
until:
- result is success
- "'DNS problem: NXDOMAIN' in result.stdout"
- "'DNS problem: NXDOMAIN' in result.stdout or 'Waiting for HTTP-01 challenge propagation' in result.stdout or 'no such host' in result.stdout"
retries: 6
delay: 10

Expand All @@ -39,7 +39,7 @@
register: result
until:
- result is success
- "'DNS problem: NXDOMAIN' in result.stdout"
- "'DNS problem: NXDOMAIN' in result.stdout or 'Waiting for HTTP-01 challenge propagation' in result.stdout or 'no such host' in result.stdout"
retries: 6
delay: 10

Expand Down

0 comments on commit f45fc60

Please sign in to comment.