Fix missed kolla_action for murano

it missing from I357dffdfcb2b405e280a962d366ee65eebf0a8d1

Change-Id: Ifc981f6bcead0b37340a04e284355f6474bd7900
This commit is contained in:
ZhijunWei 2018-05-17 06:17:14 +00:00
parent ae9dbdfbdd
commit 5c1f0226d3
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
image: "{{ service.image }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
@ -38,7 +38,7 @@
privileged: "{{ service.privileged | default(False) }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool

View File

@ -87,7 +87,7 @@
volumes: "{{ item.value.volumes }}"
register: check_murano_containers
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ murano_services }}"