Merge "Fix baremetal serial console autoenable"

This commit is contained in:
Zuul 2019-10-28 14:50:29 +00:00 committed by Gerrit Code Review
commit a02c65832c
2 changed files with 14 additions and 2 deletions

View File

@ -1,6 +1,11 @@
---
# This is a wrapper around baremetal-compute-serial-console which only runs the playbook when
# This is a wrapper around baremetal-compute-serial-console which only runs the
# playbook when Ironic is enabled in the overcloud and
# ironic_serial_console_autoenable is set to true.
- import_playbook: baremetal-compute-serial-console.yml
when: ironic_serial_console_autoenable | bool
vars:
cmd: enable
when:
- kolla_enable_ironic | bool
- ironic_serial_console_autoenable | bool

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes an issue with ``kayobe overcloud post configure`` when Ironic is
disabled, but ``ironic_serial_console_autoenable`` is set to ``true``.
See `story 2006662 <https://storyboard.openstack.org/#!/story/2006662>`__
for details.