8a80e6fb46
This patch adds ability to translate network name to UUID when setting options in ironic_config. For example to translate network name to uuid for provision_network, cleaning_network: ironic_config { 'neutron/cleaning_network': value => 'baremetal', transform_to => 'net_uuid'; 'neutron/provisioning_network': value => 'baremetal', transform_to => 'net_uuid'; } or by defining ::ironic::conductor class with the following variables: class {'::ironic::conductor': cleaning_network_name => 'cleaning_network', provisioning_network_name => 'provisioning_network' } Change-Id: I7ee49c6fec7fcbddbd06e401272e83325c8fdc73
4 lines
102 B
Puppet
4 lines
102 B
Puppet
ironic_config {
|
|
'neutron/cleaning_network': value => 'cleaning_net', transform_to => 'net_uuid';
|
|
}
|