Merge "Change action to kolla_action"

This commit is contained in:
Zuul 2019-04-02 03:42:38 +00:00 committed by Gerrit Code Review
commit c7ef124557
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
volumes: "{{ service.volumes }}"
dimensions: "{{ service.dimensions }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
@ -39,7 +39,7 @@
volumes: "{{ service.volumes }}"
dimensions: "{{ service.dimensions }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
@ -63,7 +63,7 @@
volumes: "{{ service.volumes }}"
dimensions: "{{ service.dimensions }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool

View File

@ -118,7 +118,7 @@
dimensions: "{{ item.value.dimensions }}"
register: check_cyborg_containers
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ cyborg_services }}"