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 0a4146d commit 4bc7977Copy full SHA for 4bc7977
tests/playbooks/roles/install-cpo-occm/tasks/main.yaml
@@ -128,7 +128,7 @@
128
msg: *failmsg
129
130
- name: Run functional tests for openstack-cloud-controller-manager
131
- when: run_e2e
+ when: run_e2e | bool
132
register: run_tests
133
shell:
134
executable: /bin/bash
@@ -145,7 +145,7 @@
145
146
- name: Print logs for debugging
147
when:
148
- - run_e2e
+ - run_e2e | bool
149
- run_tests.failed
150
block:
151
- name: Show openstack-cloud-controller-manager pod logs
tests/playbooks/test-occm-e2e.yaml
@@ -25,5 +25,5 @@
25
- role: install-k3s
26
worker_node_count: 0
27
- role: install-cpo-occm
28
- run_e2e: "{{ run_e2e }}"
+ run_e2e: "{{ run_e2e | bool }}"
29
octavia_provider: "{{ octavia_provider }}"
0 commit comments