Getting Started The staging-ovirt driver allows OpenStack to easily use ovirt/RHV virtual machines as overcloud nodes. For those of us running virtualized OpenStack labs, it's a huge step forward - as we either were previously having to hack our way around pxe_ssh or vmbc. Neither was a great solution. In order to use the staging-ovirt … Continue reading OpenStack Staging-Ovirt Driver: global name \’sdk\’ is not defined
ironic
How to Manage Libvirt VMs via OpenStack Ironic (OSP10)
In this post I will document the steps that I am using to create a fully virtualized OSP 10 environment in my lab. The undercloud node is a VM, as well as the overcloud nodes. We will configure libvirt so that ironic has the ability to boot and shutdown the VMs on the underlying … Continue reading How to Manage Libvirt VMs via OpenStack Ironic (OSP10)
OpenStack: instackenv.json Format Example
Here is a quick and dirty example of the format of your instackenv.json. This is the file that Ironic uses to import nodes. Enter your IPMI user id under "pm_user" Enter your IPMI password under "pm_password" [code language="css"] { "nodes":[ { "mac":[ "74:E6:E2:FB:71:B0" ], "cpu":"4", "memory":"6144", "disk":"40", "arch":"x86_64", "name":"control01", "pm_type":"pxe_ipmitool", "pm_user":"admin", "pm_password":"admin", "pm_addr":"10.75.99.120" }, … Continue reading OpenStack: instackenv.json Format Example