Skip to content

Commit

Permalink
ci: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Mishavint committed Aug 29, 2023
1 parent 432847a commit b9599f9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 10 additions & 0 deletions molecule/end-to-end_demo/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@
release_namespace: ingress-nginx-ns
values_files:
- /root/demo/ingress-controller/helm-values.yml
register: helm_result
changed_when: false
until: helm_result.rc != 0
retries: 2
delay: 5

- name: Cert Manager
hosts:
Expand All @@ -111,6 +116,11 @@
release_namespace: cert-manager-ns
values_files:
- /root/demo/cert-manager/helm-values.yml
register: helm_result
changed_when: false
until: helm_result.rc != 0
retries: 2
delay: 5

- name: Prepare CA certificate
block:
Expand Down
2 changes: 0 additions & 2 deletions molecule/end-to-end_demo/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,5 +243,3 @@ scenario:
- converge
- side_effect
- verify
- cleanup
- destroy
2 changes: 1 addition & 1 deletion molecule/verify-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- name: Query health endpoint to show output # noqa: command-instead-of-module
ansible.builtin.shell: |
set -o pipefail && \
curl -k https://localhost:6443/livez?verbose
curl -k --retry 5 https://localhost:6443/livez?verbose 2>/dev/null
args:
executable: /bin/bash
register: curl_show
Expand Down

0 comments on commit b9599f9

Please sign in to comment.