@@ -80,6 +80,19 @@ hostonly_sriov_prefix: "{{ hostonly_sriov_cidr | ansible.utils.ipaddr('prefix')
8080hostonly_sriov_fip_pool_start : " {{ hostonly_sriov_cidr | nthhost(2) }}"
8181hostonly_sriov_fip_pool_end : " {{ hostonly_sriov_cidr | nthhost(-2) }}"
8282
83+ # StorageNFSNetwork
84+ hostonly_nfs_cidr : 172.17.5.0/24
85+ hostonly_nfs_ganesha : " {{ hostonly_nfs_cidr | nthhost(129) }}"
86+ hostonly_nfs_prefix : " {{ hostonly_nfs_cidr | ansible.utils.ipaddr('prefix') }}"
87+ hostonly_nfs_fip_pool_start : " {{ hostonly_nfs_cidr | nthhost(150) }}"
88+ hostonly_nfs_fip_pool_end : " {{ hostonly_nfs_cidr | nthhost(-2) }}"
89+
90+ storage_nfs : " {{ hostonly_nfs_cidr | nthhost(2) }}"
91+ storage_nfs_subnet : " {{ hostonly_nfs_cidr }}"
92+ storage_nfs_uri : " {{ hostonly_nfs_ganesha }}"
93+ storage_nfs_ip : " {{ hostonly_nfs_cidr | nthhost(1) }}"
94+ storage_nfs_vip : " {{ hostonly_nfs_ganesha }}"
95+
8396# Configuration used only by prepare_stack_testconfig, which is not run by
8497# default.
8598testconfig_private_cidr : 192.168.100.0/24
@@ -121,7 +134,7 @@ low_memory_usage: false
121134# This param can be overriden, but only when overriding the network_config, otherwise the default
122135# should work as is:
123136# neutron_bridge_mappings:
124- neutron_flat_networks : " external,hostonly,hostonly-sriov"
137+ neutron_flat_networks : " external,hostonly,hostonly-sriov,storage_nfs "
125138
126139# If we have more than one SR-IOV device, it can be useful to override this one, but the default is safe
127140# if we only use `sriov_interface` for one device.
0 commit comments