@cybermem/cli 0.13.13 → 0.13.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -265,8 +265,9 @@
|
|
|
265
265
|
args:
|
|
266
266
|
chdir: "{{ project_dir }}"
|
|
267
267
|
ignore_errors: true
|
|
268
|
-
when: health_status
|
|
268
|
+
when: (health_status is failed) or (health_status.json is defined and health_status.json.overall != 'ok')
|
|
269
269
|
|
|
270
270
|
- name: Deployment Summary
|
|
271
271
|
debug:
|
|
272
|
-
msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{
|
|
272
|
+
msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{ health_status.json.overall | default('UNKNOWN') }}"
|
|
273
|
+
when: health_status.json is defined
|
package/package.json
CHANGED
|
@@ -265,8 +265,9 @@
|
|
|
265
265
|
args:
|
|
266
266
|
chdir: "{{ project_dir }}"
|
|
267
267
|
ignore_errors: true
|
|
268
|
-
when: health_status
|
|
268
|
+
when: (health_status is failed) or (health_status.json is defined and health_status.json.overall != 'ok')
|
|
269
269
|
|
|
270
270
|
- name: Deployment Summary
|
|
271
271
|
debug:
|
|
272
|
-
msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{
|
|
272
|
+
msg: "CyberMem v{{ global_version }} successfully deployed. Health: {{ health_status.json.overall | default('UNKNOWN') }}"
|
|
273
|
+
when: health_status.json is defined
|