From 5c1f0226d341adb0ccdee33a7aa9ba7d026f90dd Mon Sep 17 00:00:00 2001 From: ZhijunWei <wzj334965317@outlook.com> Date: Thu, 17 May 2018 06:17:14 +0000 Subject: [PATCH] Fix missed kolla_action for murano it missing from I357dffdfcb2b405e280a962d366ee65eebf0a8d1 Change-Id: Ifc981f6bcead0b37340a04e284355f6474bd7900 --- ansible/roles/murano/handlers/main.yml | 4 ++-- ansible/roles/murano/tasks/config.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/murano/handlers/main.yml b/ansible/roles/murano/handlers/main.yml index 1a0046449a..e360d7fa17 100644 --- a/ansible/roles/murano/handlers/main.yml +++ b/ansible/roles/murano/handlers/main.yml @@ -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 diff --git a/ansible/roles/murano/tasks/config.yml b/ansible/roles/murano/tasks/config.yml index d4116c9a2c..654739755a 100644 --- a/ansible/roles/murano/tasks/config.yml +++ b/ansible/roles/murano/tasks/config.yml @@ -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 }}"