|
|
@ -5,6 +5,9 @@ |
|
|
|
# name: Name of the network (mandatory) |
|
|
|
# name_lower: lowercase version of name used for filenames |
|
|
|
# (optional, defaults to name.lower()) |
|
|
|
# service_net_map_replace: if name_lower is set to a custom name this should be set |
|
|
|
# to original default (optional). This field is only necessary when |
|
|
|
# changing the default network names, not when adding a new custom network. |
|
|
|
# enabled: Is the network enabled (optional, defaults to true) |
|
|
|
# NOTE: False will use noop.yaml for unused legacy networks to support upgrades. |
|
|
|
# vlan: vlan for the network (optional) |
|
|
@ -109,7 +112,18 @@ |
|
|
|
vip: true |
|
|
|
name_lower: storage_nfs |
|
|
|
vlan: 70 |
|
|
|
ip_subnet: '172.16.4.0/24' |
|
|
|
allocation_pools: [{'start': '172.16.4.4', 'end': '172.16.4.250'}] |
|
|
|
ip_subnet: '172.17.0.0/20' |
|
|
|
ipv6_subnet: 'fd00:fd00:fd00:7000::/64' |
|
|
|
ipv6_allocation_pools: [{'start': 'fd00:fd00:fd00:7000::10', 'end': 'fd00:fd00:fd00:7000:ffff:ffff:ffff:fffe'}] |
|
|
|
# This network is shared by the overcloud deployment and a Neutron provider network |
|
|
|
# that is set up post-deployment for consumers like Nova VMs to use to mount shares. |
|
|
|
# The allocation pool specified here is used for the overcloud deployment for interfaces |
|
|
|
# on the ControllerStorageNfs role nodes and for the VIP where the Ganesha service itself is |
|
|
|
# exposed. With a default three-controller node deployment, only four IPs are actually needed |
|
|
|
# for this allocation pool. |
|
|
|
# When you adapt this file for your own deployment you can of course change the /20 CIDR |
|
|
|
# and adjust the allocation pool -- just make sure to leave a good-sized range outside the |
|
|
|
# allocation pool specified here for use in the allocation pool for the overcloud Neutron |
|
|
|
# StorageNFS provider network's subnet definition. |
|
|
|
allocation_pools: [{'start': '172.17.0.4', 'end': '172.17.0.250'}] |
|
|
|
ipv6_allocation_pools: [{'start': 'fd00:fd00:fd00:7000::4', 'end': 'fd00:fd00:fd00:7000::fffe'}] |
|
|
|
mtu: 1500 |