Merge "Fixes disk space issue with perf scenarios on Undercloud"
[apex.git] / tests / config / network_settings_missing_required_nic.yaml
1 # This configuration file defines Network Environment for a
2 # Baremetal Deployment of OPNFV. It contains default values
3 # for 4 following networks:
4 #
5 # - admin
6 # - private*
7 # - public
8 # - storage*
9 #
10 # *) optional networks
11 #
12 # Any values missing from this configuration file will be
13 # auto-detected by deployment script from the existing network
14 # configuration of the jumphost.
15 #
16 # Optional networks will be consolidated with the admin network
17 # if not explicitely configured.
18 #
19 # See short description of the networks in the comments below.
20 #
21
22 # DNS Servers for all nodes, comma delimited list
23 dns_servers: ["8.8.8.8", "8.8.4.4"]
24
25 # "admin" is the short name for Control Plane Network.
26 # During OPNFV deployment it is used for node provisioning so
27 # PXE boot should be enabled for the related interfaces on all
28 # the nodes in the OPNFV cluster. After the deployment this
29 # network is used as the OpenStack management network which
30 # carries e.g. communication between its internal components.
31 #
32 admin_network:
33   enabled: true
34   network_type: bridged
35   bridged_interface: ''
36   bond_interfaces: ''
37   compute_interface: eth1
38   controller_interface: eth2
39   usable_ip_range: 192.0.2.11,192.0.2.99
40   gateway: 192.0.2.1
41   provisioner_ip: 192.0.2.1
42   cidr: 192.0.2.0/24
43   dhcp_range: 192.0.2.2,192.0.2.10
44   introspection_range: 192.0.2.100,192.0.2.120
45
46 # "private" is an optional network used as underlying physical
47 # network for virtual provider and tenant networks created by
48 # users. Traffic between virtual machines is carried by this
49 # network.
50 #
51 private_network:
52   enabled: true
53   vlan: native
54   cidr: 11.0.0.0/24
55   compute_interface: enp0s4
56   controller_interface: nic3
57
58 # "public" network is used for external connectivity.
59 # The external network provides Internet access for virtual
60 # machines. If floating IP range is defined for this network,
61 # floating IP addresses can be used for accessing virtual
62 # machines from outside of OPNFV cluster. Also external REST
63 # API calls use this network.
64 #
65 public_network:
66   enabled: true
67   network_type: ''
68   bridged_interface: ''
69   vlan: native
70   cidr: 192.168.37.0/24
71   gateway: 192.168.37.1
72   floating_ip_range: 192.168.37.200,192.168.37.220
73   usable_ip_range: 192.168.37.10,192.168.37.199
74   provisioner_ip: 192.168.37.1
75
76 # "storage" is an optional network used by storage backends.
77 # You can configure this network in order to reduce load on
78 # Control Plane Network.
79 #
80 storage_network:
81   enabled: true
82   vlan: native
83   cidr: 12.0.0.0/24
84   compute_interface: eth5
85   controller_interface: eth6
86
87 #admin_network:
88 #  enabled: true
89 #  network_type: bridged                             #Indicates if this network will be bridged to an interface, or to a bond
90 #  bridged_interface: ''                             #Interface to bridge to for installer VM
91 #  bond_interfaces: ''                               #Interfaces to create bond with for installer VM
92 #  compute_interface: nic4                 #Interface used for this network on the compute node.  Can either be logical nic name like "nic1" or real name like "eth1"
93 #  controller_interface: nic4              #Interface used for this network on the controller node.  Can either be logical nic name like "nic1" or real name like "eth1"
94 #  vlan: native                                      #VLAN tag to use, native means none
95 #  usable_ip_range: 192.0.2.11,192.0.2.99            #Usable ip range, if empty entire range is usable, ex. 192.168.1.10,192.168.1.20
96 #  gateway: 192.0.2.1                                #Gateway (only needed when public_network is disabled), if empty it is auto-detected
97 #  provisioner_ip: 192.0.2.1                         #installer VM IP, if empty it is the next available IP in the admin subnet
98 #  cidr: 192.0.2.0/24                                #subnet in CIDR format 192.168.1.0/24, if empty it will be auto-detected
99 #  dhcp_range: 192.0.2.2,192.0.2.10                  #dhcp range for the admin network, if empty it will be automatically provisioned
100 #  introspection_range: 192.0.2.100,192.0.2.120      #Range used for introspection phase (examining nodes)
101 #private_network:
102 #  enabled: false                                    #If disabled, internal api traffic will collapse to admin_network
103 #public_network:
104 #  enabled: true                                     #If disabled, public_network traffic will collapse to admin network
105 #  network_type: ''
106 #  bridged_interface: ''
107 #  cidr: 192.168.37.0/24
108 #  gateway: 192.168.37.1
109 #  floating_ip_range: 192.168.37.200,192.168.37.220  #Range to allocate to floating IPs for the public network with Neutron
110 #  usable_ip_range: 192.168.37.10,192.168.37.199     #Usable IP range on the public network, usually this is a shared subnet
111 #  provisioner_ip: 192.168.37.1
112 #storage_network:
113 #  enabled: false                                    #If disabled, storage_network traffic will collapse to admin network