Skip to content

Commit

Permalink
ci: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Mishavint committed Aug 31, 2023
1 parent b9599f9 commit 685c537
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
make init
- name: Run tests
run: |
molecule test --scenario-name "${{ matrix.scenario }}"
molecule test --scenario-name "${{ matrix.scenario }}" --destroy=never
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
Expand Down
20 changes: 14 additions & 6 deletions molecule/end-to-end_demo/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,16 @@
name: ingress-nginx
chart_ref: ingress-nginx/ingress-nginx
release_namespace: ingress-nginx-ns
timeout: 2m
values_files:
- /root/demo/ingress-controller/helm-values.yml
register: helm_result
changed_when: false
until: helm_result.rc != 0
retries: 2
delay: 5
failed_when: false

- name: Debug

Check failure on line 97 in molecule/end-to-end_demo/converge.yml

View workflow job for this annotation

GitHub Actions / Run linters

fqcn[action-core]

Use FQCN for builtin module actions (debug).
debug:
msg: "{{ helm_result }}"

- name: Cert Manager
hosts:
Expand All @@ -114,13 +117,18 @@
name: cert-manager
chart_ref: jetstack/cert-manager
release_namespace: cert-manager-ns
timeout: 2m
values_files:
- /root/demo/cert-manager/helm-values.yml
register: helm_result
changed_when: false
until: helm_result.rc != 0
retries: 2
delay: 5
failed_when: false

- name: Debug

Check failure on line 127 in molecule/end-to-end_demo/converge.yml

View workflow job for this annotation

GitHub Actions / Run linters

fqcn[action-core]

Use FQCN for builtin module actions (debug).
debug:
msg: "{{ helm_result }}"
- name: Pause

Check failure on line 130 in molecule/end-to-end_demo/converge.yml

View workflow job for this annotation

GitHub Actions / Run linters

fqcn[action-core]

Use FQCN for builtin module actions (pause).
pause:

- name: Prepare CA certificate
block:
Expand Down

0 comments on commit 685c537

Please sign in to comment.