1db06b3277
Like other containers. This ensures that upgrade already updates PXE components and no additional deploy/reconfigure is needed. Closes-Bug: #1963752 Change-Id: I368780143086bc5baab1556a5ec75c19950d5e3c
66 lines
2.0 KiB
YAML
66 lines
2.0 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-PXE bootstrap container
|
|
vars:
|
|
ironic_pxe: "{{ ironic_services['ironic-pxe'] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "start_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
detach: False
|
|
environment:
|
|
KOLLA_BOOTSTRAP:
|
|
KOLLA_CONFIG_STRATEGY: "{{ config_strategy }}"
|
|
image: "{{ ironic_pxe.image }}"
|
|
labels:
|
|
BOOTSTRAP:
|
|
name: "bootstrap_ironic_pxe"
|
|
restart_policy: no
|
|
volumes: "{{ ironic_pxe.volumes }}"
|
|
when: inventory_hostname in groups[ironic_pxe.group]
|