Merge "Add environment for setting a custom domain name"
[apex-tripleo-heat-templates.git] / network_data.yaml
1 # List of networks, used for j2 templating of enabled networks
2 #
3 # Supported values:
4 #
5 # name: Name of the network (mandatory)
6 # name_lower: lowercase version of name used for filenames
7 #             (optional, defaults to name.lower())
8 # enabled: Is the network enabled (optional, defaults to true)
9 # ipv6: Does this network use IPv6 IPs? (optional, defaults to false)
10 #                   (optional, may use parameter defaults in environment to set)
11 # vlan: vlan for the network (optional)
12 # vip: Enable creation of a virtual IP on this network
13 #      [TODO] (dsneddon@redhat.com) - Enable dynamic creation of VIP ports,
14 #      to support VIPs on non-default networks.
15 #      See https://bugs.launchpad.net/tripleo/+bug/1667104
16 # ip_subnet: IP/CIDR, e.g. '192.168.24.0/24' (optional, may use parameter defaults)
17 # allocation_pools: IP range list e.g. [{'start':'10.0.0.4', 'end':'10.0.0.250}]
18 # gateway_ip: gateway for the network (optional, may use parameter defaults)
19 # NOTE: IP-related values set parameter defaults in templates, may be overridden.
20 #
21 # Example:
22 # - name Example
23 #   vip: false
24 #   ip_subnet: '10.0.2.0/24'
25 #   allocation_pools: [{'start': '10.0.2.4', 'end': '10.0.2.250'}]
26 #   gateway_ip: '10.0.2.254'
27 #
28 # TODO (dsneddon) remove existing templates from j2_excludes.yaml
29 #                 and generate all templates dynamically.
30
31 - name: External
32   vip: true
33   name_lower: external
34   ip_subnet: '10.0.0.0/24'
35   allocation_pools: [{'start': '10.0.0.4', 'end': '10.0.0.250'}]
36   gateway_ip: '10.0.0.1'
37 - name: InternalApi
38   name_lower: internal_api
39   vip: true
40   ip_subnet: '172.16.2.0/24'
41   allocation_pools: [{'start': '172.16.2.4', 'end': '172.16.2.250'}]
42 - name: Storage
43   vip: true
44   name_lower: storage
45   ip_subnet: '172.16.1.0/24'
46   allocation_pools: [{'start': '172.16.1.4', 'end': '172.16.1.250'}]
47 - name: StorageMgmt
48   name_lower: storage_mgmt
49   vip: true
50   ip_subnet: '172.16.3.0/24'
51   allocation_pools: [{'start': '172.16.3.4', 'end': '172.16.3.250'}]
52 - name: Tenant
53   vip: false  # Tenant network does not use VIPs
54   name_lower: tenant
55   ip_subnet: '172.16.0.0/24'
56   allocation_pools: [{'start': '172.16.0.4', 'end': '172.16.0.250'}]
57 - name: Management
58   # Management network is disabled by default
59   enabled: false
60   vip: false  # Management network does not use VIPs
61   name_lower: management
62   ip_subnet: '10.0.1.0/24'
63   allocation_pools: [{'start': '10.0.1.4', 'end': '10.0.1.250'}]