Fix missed kolla_action and kolla_serial

In change I78cb60168aaa40bb6439198283546b7faf33917c, action was changed
to kolla_action, and serial to kolla_serial, to avoid Ansible warnings
due to use of reserved keywords. In that change, some keywords were
missed, and some changes that were merged since then have not switched
to the new variables. This change fixes all current instances of those
issues.

Change-Id: I357dffdfcb2b405e280a962d366ee65eebf0a8d1
Implements: blueprint migrate-to-ansible-2-2-0
This commit is contained in:
Mark Goddard 2018-05-16 13:13:06 +01:00
parent e303c74e68
commit 2e190597bb
19 changed files with 28 additions and 28 deletions

View File

@ -6,7 +6,7 @@
# Ansible gathering facts twice.
- name: Gather facts for all hosts
hosts: all
serial: '{{ serial|default("0") }}'
serial: '{{ kolla_serial|default("0") }}'
gather_facts: false
tasks:
- setup:
@ -21,7 +21,7 @@
# which can be very inefficient.
- name: Gather facts for all hosts (if using --limit)
hosts: all
serial: '{{ serial|default("0") }}'
serial: '{{ kolla_serial|default("0") }}'
gather_facts: false
tasks:
- setup:

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
@ -37,7 +37,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

View File

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

View File

@ -1,2 +1,2 @@
---
- include: "{{ action }}.yml"
- include: "{{ kolla_action }}.yml"

View File

@ -38,7 +38,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

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
@ -61,7 +61,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
@ -82,7 +82,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
@ -105,7 +105,7 @@
volumes: "{{ service.volumes }}"
cap_add: "{{ service.cap_add }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool

View File

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

View File

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

View File

@ -54,7 +54,7 @@
environment: "{{ item.value.environment }}"
register: check_kafka_containers
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ kafka_services }}"

View File

@ -1,2 +1,2 @@
---
- include: "{{ action }}.yml"
- include: "{{ kolla_action }}.yml"

View File

@ -14,7 +14,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

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

View File

@ -312,7 +312,7 @@
volumes: "{{ service.volumes }}"
privileged: "{{ service.privileged | default(False) }}"
when:
- action != "config"
- kolla_action != "config"
- service.enabled | bool
- service.host_in_groups | bool
- config_json | changed

View File

@ -12,7 +12,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
@ -33,7 +33,7 @@
pid_mode: "{{ service.pid_mode | default(emit) }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[service.group]
- service.enabled | bool
- config_json.changed | bool
@ -52,7 +52,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
@ -72,7 +72,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

View File

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

View File

@ -1,2 +1,2 @@
---
- include: "{{ action }}.yml"
- include: "{{ kolla_action }}.yml"

View File

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

View File

@ -68,7 +68,7 @@
environment: "{{ item.value.environment }}"
register: check_zookeeper_containers
when:
- action != "config"
- kolla_action != "config"
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ zookeeper_services }}"

View File

@ -1,2 +1,2 @@
---
- include: "{{ action }}.yml"
- include: "{{ kolla_action }}.yml"