Merge "Switch to "ipmi" hardware type by default for >= Pike"

This commit is contained in:
Jenkins 2017-06-23 17:05:08 +00:00 committed by Gerrit Code Review
commit d683de2d08
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
features:
- |
Starting with the Pike release, the ``ipmi`` hardware type is used for
virtual nodes instead of the old ``pxe_ipmitool`` driver.

View File

@ -13,7 +13,11 @@
"pm_addr": "{{ host_ip }}",
{% else %}
"pm_password": "password",
"pm_type": "pxe_ipmitool",
{% if release == 'ocata' %}
"pm_type": "pxe_ipmitool",
{% else %}
"pm_type": "ipmi",
{% endif %}
"pm_user": "admin",
"pm_addr": "127.0.0.1",
"pm_port": "{{ node.virtualbmc_port }}",