tripleo-image-elements/elements/os-net-config
Alex Schultz 8da8d9a51b Clear net.ifnames definition
With RHEL8, net.ifnames is set to 0 in the grub config. This is a change
in the default image which can have user impacts. We want to clear it to
go back to the previously defined behavior in RHEL7.

Change-Id: I621066ea5e0e934668ff4c91e991a95d18e019f7
Closes-Bug: #1841441
2019-08-27 07:44:14 -06:00
..
environment.d Add an element to install os-net-config. 2014-09-17 15:01:37 -04:00
install.d/os-net-config-source-install Merge "Update pbr version to match global requirements" 2015-07-02 20:02:16 +00:00
os-apply-config/etc/os-net-config Use /etc/os-net-config/element_config.json 2017-06-02 07:44:42 -04:00
os-refresh-config/configure.d Add a 60 seconds timeout to ping_metadata_ip() 2018-05-03 21:49:57 -04:00
README.md Use /etc/os-net-config/element_config.json 2017-06-02 07:44:42 -04:00
element-deps Clear net.ifnames definition 2019-08-27 07:44:14 -06:00
package-installs.yaml Migrate os-*-config to package-installs v2 2015-04-30 16:12:40 -04:00
pkg-map Add pkg-map for os-*-config 2015-02-09 17:16:50 +09:00

README.md

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"
                 }
             ]
         }
     ]}
 }