dcf5a8b65f
ansible-lint introduced var-spacing - let's fix our code. Change-Id: I0d8aaf3c522a5a6a5495032f6dbed8a2be0251f0
68 lines
2.2 KiB
YAML
68 lines
2.2 KiB
YAML
---
|
|
- name: Running Ironic bootstrap container
|
|
vars:
|
|
ironic_api: "{{ ironic_services['ironic-api'] }}"
|
|
bootstrap_environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
upgrade_environment:
|
|
KOLLA_UPGRADE:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment: "{{ upgrade_environment if ironic_enable_rolling_upgrade | bool else bootstrap_environment }}"
|
|
image: "{{ ironic_api.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_ironic"
|
|
restart_policy: no
|
|
volumes: "{{ ironic_api.volumes | reject('equalto', '') | list }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[ironic_api.group][0] }}"
|
|
when: inventory_hostname in groups[ironic_api.group]
|
|
|
|
- name: Running Ironic Inspector bootstrap container
|
|
vars:
|
|
ironic_inspector: "{{ ironic_services['ironic-inspector'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ ironic_inspector.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_ironic_inspector"
|
|
restart_policy: no
|
|
volumes: "{{ ironic_inspector.volumes | reject('equalto', '') | list }}"
|
|
run_once: True
|
|
delegate_to: "{{ groups[ironic_inspector.group][0] }}"
|
|
when: inventory_hostname in groups[ironic_inspector.group]
|
|
|
|
- name: Running ironic-tftp bootstrap container
|
|
vars:
|
|
ironic_tftp: "{{ ironic_services['ironic-tftp'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
TFTPBOOT_PATH: /var/lib/ironic/tftpboot
|
|
HTTPBOOT_PATH: /var/lib/ironic/httpboot
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ ironic_tftp.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_ironic_tftp"
|
|
restart_policy: no
|
|
volumes: "{{ ironic_tftp.volumes }}"
|
|
when: inventory_hostname in groups[ironic_tftp.group]
|