tripleo-image-elements/elements/os-net-config/README.md

764 B

Install, configure, and (optionally) run os-net-config.

Installs os-net-config and configures a JSON formatted config file at /etc/os-net-config/element_config.json. The os-net-config command is only executed if configuration metadata is provided.

Configuration

os_net_config: JSON (or YAML) metadata in the os-net-config format.

Config Examples:

 { "os_net_config":
     { "network_config": [
         {
             "type": "ovs_bridge",
             "name": "br-ctlplane",
             "use_dhcp": "true",
             "primary": "true",
             "members": [
                 {
                     "type": "interface",
                     "name": "em1"
                 }
             ]
         }
     ]}
 }