This message was deleted.
# elemental
a
This message was deleted.
f
Hello there. I think any software raid should be configurable using the same logic as for the LVM example: https://elemental.docs.rancher.com/lvm-drives-example So that would be with a SeedImage driven
cloud-config
, that will be evaluated at first boot. For node specific scripts there are a couple of options. If they can be applied after the node has been bootstrapped, then consider using a system-upgrade-controller
Plan
resource using a
nodeSelector
, to be applied on the downstream cluster: https://github.com/rancher/system-upgrade-controller However since this is about configuring network, the other option is to use the
nm-configurator
and apply a static per-node configuration. This is matched with the machine's NIC MAC addresses: https://elemental.docs.rancher.com/networking-static You may need however to bring in your logic for the bgp configuration, also through MAC address matching, or by other means like motherboard UUID or other information.
👍 1