Merge "zun: Use assert on checks for readability"

This commit is contained in:
Zuul 2023-02-13 16:19:48 +00:00 committed by Gerrit Code Review
commit ffa9c307b4

View File

@ -50,10 +50,9 @@
- inventory_hostname in groups['zun-cni-daemon']
- name: Ensure kuryr enabled for zun
fail:
msg: "kuryr is required but not enabled"
assert:
that: enable_kuryr | bool
fail_msg: "kuryr is required but not enabled"
run_once: True
changed_when: false
when:
- enable_zun | bool
- not enable_kuryr | bool