Merge "Ironic: rebootstrap ironic-pxe on upgrade" into stable/victoria

This commit is contained in:
Zuul 2022-03-29 10:45:43 +00:00 committed by Gerrit Code Review
commit c8de43826c
3 changed files with 25 additions and 19 deletions

View File

@ -52,22 +52,3 @@
- inventory_hostname in groups[item.group]
- import_tasks: bootstrap_service.yml
- 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]

View File

@ -44,3 +44,22 @@
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]

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with Ironic's PXE components not getting updated on
upgrade.
`LP#1963752 <https://launchpad.net/bugs/1963752>`__