tripleo-image-elements/elements/os-net-config
Martin André 81894bafcc Add pkg-map for os-*-config
These packages are called python-os-*-config on Debian and derivates.

Change-Id: I69f462e92a2cff6d82c7b363340336bfaa95e821
2015-02-09 17:16:50 +09:00
..
environment.d Add an element to install os-net-config. 2014-09-17 15:01:37 -04:00
install.d Add pkg-map for os-*-config 2015-02-09 17:16:50 +09:00
os-apply-config/etc/os-net-config Add an element to install os-net-config. 2014-09-17 15:01:37 -04:00
os-refresh-config/configure.d os-net-config: log at log level info again... 2014-12-17 08:57:10 -05:00
README.md Add an element to install os-net-config. 2014-09-17 15:01:37 -04:00
element-deps os-net-config: use package-installs 2014-11-14 11:00:51 -05: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/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"
                 }
             ]
         }
     ]}
 }