kayobe/ansible/baremetal-compute-serial-console-post-config.yml
Mark Goddard 5977a44119 Fix baremetal serial console autoenable
If ironic_serial_console_autoenable is set to true, ironic compute node
serial consoles are automatically enabled during kayobe overcloud post
configure. However, the baremetal-compute-serial-console.yml playbook
expects a variable called cmd to be defined, and set to 'enable' in
order to enable serial consoles. This patch fixes the issue.

We also add a conditional to only import the playbook when ironic is
enabled in the overcloud.

Change-Id: Ice26a113f9023b1a25a4af0552d07c5e95e64556
Story: 2006662
Task: 36924
2019-10-21 14:16:20 +01:00

12 lines
358 B
YAML

---
# 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
vars:
cmd: enable
when:
- kolla_enable_ironic | bool
- ironic_serial_console_autoenable | bool