From 7c1b8bf89d6ce3ec0114c103e6d62161eb12a071 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Wed, 29 Mar 2017 09:09:03 +0100 Subject: [PATCH] prototypes: bifrost: Fix Ironic drivers for VMs Commit d8235c3c97f4("Set database pool_size in ironic.conf and inspector.conf templates") added a copy of the ironic.conf.j2 template file to workaround an upstream bug but it also changed the default ironic drivers leading to broken introspection. We use virtual BMC for controlling the VMs and this expects ipmi ironic drivers so we fix that. Change-Id: Ibb2cc58738ec1693e136bdce7335cd1b861ec613 Fixes: d8235c3c97f4("Set database pool_size in ironic.conf and inspector.conf templates") Signed-off-by: Markos Chandras --- .../playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prototypes/bifrost/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 b/prototypes/bifrost/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 index 7debdbcc6..d8896fa9e 100644 --- a/prototypes/bifrost/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 +++ b/prototypes/bifrost/playbooks/roles/bifrost-ironic-install/templates/ironic.conf.j2 @@ -10,7 +10,7 @@ # control instead of ironic, noop is the only available network driver. enabled_network_interfaces = noop {% if testing | bool == true %} -enabled_drivers = agent_ssh,pxe_ssh +enabled_drivers = agent_ipmitool,pxe_ipmitool debug = true {% else %} enabled_drivers = {{ enabled_drivers }} -- 2.16.6