diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-04-21 00:41:15 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-04-21 00:41:15 +0000 |
commit | 89927b6b4da16b5234778711e262e0febd3f6814 (patch) | |
tree | a6e95182663ef7023b71001febe1161cfc64b843 /network_data.yaml | |
parent | 9f05a77d676f990fd5c51b0bfccff378fb650124 (diff) | |
parent | a5116005d8a94b5e888791f02b53b33c407a08ad (diff) |
Merge "Add network_data.yaml to encapsulate list of networks for j2"
Diffstat (limited to 'network_data.yaml')
-rw-r--r-- | network_data.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/network_data.yaml b/network_data.yaml new file mode 100644 index 00000000..6d62605b --- /dev/null +++ b/network_data.yaml @@ -0,0 +1,30 @@ +# List of networks, used for j2 templating of enabled networks +# +# Supported values: +# +# name: Name of the network (mandatory) +# name_lower: lowercase version of name used for filenames +# (optional, defaults to name.lower()) +# vlan: vlan for the network (optional) +# gateway: gateway for the network (optional) +# enabled: Is the network enabled (optional, defaults to true) +# vip: Enable creation of a virtual IP on this network +# [TODO] (dsneddon@redhat.com) - Enable dynamic creation of VIP ports, to support +# VIPs on non-default networks. See https://bugs.launchpad.net/tripleo/+bug/1667104 +# +- name: External + vip: true +- name: InternalApi + name_lower: internal_api + vip: true +- name: Storage + vip: true +- name: StorageMgmt + name_lower: storage_mgmt + vip: true +- name: Tenant + vip: false # Tenant network does not use VIPs +- name: Management + # Management network is disabled by default + enabled: false + vip: false # Management network does not use VIPs |