Remove UCS configuration

We need to update the default configuration upon
merging a removal of UcsSdk as otherwise ironic will
not start.

Change-Id: Iec82c85519d03159253679d1fcdf953cbab39bd6
This commit is contained in:
Julia Kreger 2019-03-19 06:54:55 -07:00
parent 8c7faf8922
commit e3c3dd0320
3 changed files with 10 additions and 4 deletions

View File

@ -85,7 +85,7 @@ In case your HW needs a kernel option to boot, set the following variable:
extra_kernel_options: Default undefined.
Hardware types can be enabled using the "enabled_hardware_types" variable,
which defaults to "ipmi, ilo, cisco-ucs-managed, cisco-ucs-standalone".
which defaults to "ipmi, ilo".
Enabled interfaces can be set via the "enabled_boot_interfaces",
"enabled_deploy_interfaces", "enabled_management_interfaces", and

View File

@ -100,11 +100,11 @@ ironicinspectorclient_git_folder: /opt/stack/python-ironic-inspector-client
staging_drivers_git_url: https://git.openstack.org/cgit/openstack/ironic-staging-drivers
# TODO(TheJulia): Add redfish to this list.
enabled_hardware_types: "ipmi,ilo,cisco-ucs-managed"
enabled_hardware_types: "ipmi,ilo"
default_deploy_interface: "direct"
enabled_boot_interfaces: "ilo-virtual-media,pxe"
enabled_management_interfaces: "ilo,ipmitool,ucsm"
enabled_power_interfaces: "ilo,ipmitool,ucsm"
enabled_management_interfaces: "ilo,ipmitool"
enabled_power_interfaces: "ilo,ipmitool"
enabled_deploy_interfaces: "iscsi,direct"
# Extra pip packages to install with ironic

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes default non-testing configuration to remove UCS drivers as they
are Python2 only being based on UcsSdk which has ceased development and
is no longer maintained.