46cc2c070f
The patch implements libvirt daemonset to use overrides daemonset_overrides_root .Values: overrides: libvirt_libvirt: labels: label::value: values: override_root_option: override_root_value conf: dynamic_options: libvirt: listen_interface: null Change-Id: If4c61f248d752316c54955ebf9712bb3235c06fd
22 lines
599 B
YAML
22 lines
599 B
YAML
---
|
|
# We have two nodes labeled with node-nics-type=4nics and node-nics-type=2nics
|
|
# on first node we pick up libvirt bind address from ens3 interface
|
|
# on second node we pick up libvirt bind address from ens0 interface
|
|
overrides:
|
|
libvirt_libvirt:
|
|
overrides_default: false
|
|
labels:
|
|
node-nics-type::4nics:
|
|
values:
|
|
conf:
|
|
dynamic_options:
|
|
libvirt:
|
|
listen_interface: ens3
|
|
node-nics-type::2nics:
|
|
values:
|
|
conf:
|
|
dynamic_options:
|
|
libvirt:
|
|
listen_interface: ens0
|
|
...
|