[ovn] Enable metadata agent
[fuel.git] / mcp / reclass / classes / cluster / all-mcp-arch-common / infra / maas.yml.j2
1 ##############################################################################
2 # Copyright (c) 2018 Mirantis Inc., Enea AB and others.
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 ##############################################################################
8 {%- import 'net_map.j2' as nm with context %}
9 ---
10 # NOTE: pod_config is generated and transferred into its final location on
11 # cfg01 only during deployment to prevent leaking sensitive data
12 classes:
13   - system.linux.system.single.simple
14   - system.maas.region.single
15   - service.maas.cluster.single
16   - cluster.all-mcp-arch-common.opnfv.lab_proxy_pdf
17   - cluster.all-mcp-arch-common.opnfv.pod_config
18 parameters:
19   _param:
20     mcpcontrol_interface: ${_param:opnfv_fn_vm_primary_interface}
21     primary_interface: ${_param:opnfv_fn_vm_secondary_interface}
22     pxe_admin_interface: ${_param:opnfv_fn_vm_tertiary_interface}
23     interface_mtu: 1500
24     # MaaS has issues using MTU > 1500 for PXE interface
25     pxe_admin_interface_mtu: 1500
26     linux_system_codename: xenial
27     maas_admin_username: opnfv
28     dns_server01: '{{ nm.dns_public[0] }}'
29     single_address: ${_param:infra_maas_node01_deploy_address}
30     hwe_kernel: 'hwe-16.04'
31     opnfv_maas_timeout_comissioning: {{ nm.maas_timeout_comissioning }}
32     opnfv_maas_timeout_deploying: {{ nm.maas_timeout_deploying }}
33   maas:
34     region:
35       boot_sources_delete_all_others: true
36       boot_sources:
37         resources_mirror:
38           url: http://images.maas.io/ephemeral-v3/daily
39           keyring_file: /usr/share/keyrings/ubuntu-cloudimage-keyring.gpg
40       boot_sources_selections:
41         xenial:
42           url: "http://images.maas.io/ephemeral-v3/daily"
43           os: "ubuntu"
44           release: "${_param:linux_system_codename}"
45           arches:
46 {%- for arch in nm.cluster.arch %}
47             - "{{ arch | dpkg_arch }}"
48 {%- endfor %}
49           subarches:
50             - "generic"
51             - "ga-16.04"
52             - "hwe-16.04"
53           labels: '"*"'
54       fabrics:
55         pxe_admin:
56           name: 'pxe_admin'
57           description: Fabric for PXE/admin
58           vlans:
59             0:
60               name: 'vlan 0'
61               description: PXE/admin VLAN
62               dhcp: true
63               primary_rack: "${linux:network:hostname}"
64       subnets:
65         {{ nm.net_admin }}:
66           name: {{ nm.net_admin }}
67           cidr: {{ nm.net_admin }}
68           gateway_ip: ${_param:single_address}
69           fabric: ${maas:region:fabrics:pxe_admin:name}
70           vlan: 0
71           ipranges:
72             1:
73               start: {{ nm.net_admin_pool_start }}
74               end: {{ nm.net_admin_pool_end }}
75               type: dynamic
76       sshprefs:
77         - '{{ conf.MAAS_SSH_KEY }}'
78 {%- if 'aarch64' in nm.cluster.arch %}
79       package_repositories:
80         armband:
81           name: armband
82           enabled: '1'
83           url: 'http://linux.enea.com/mcp-repos/${_param:openstack_version}/${_param:linux_system_codename}'
84           distributions: '${_param:openstack_version}-armband'
85           components: 'main'
86           arches: 'arm64'
87           key: ${_param:armband_key}
88 {%- endif %}
89       salt_master_ip: ${_param:reclass_config_master}
90       domain: ${_param:cluster_domain}
91       ~maas_config:
92         maas_name: mas01
93         active_discovery_interval: 600
94         ntp_external_only: true
95         upstream_dns: ${_param:dns_server01}
96         commissioning_distro_series: 'xenial'
97         default_distro_series: 'xenial'
98         default_osystem: 'ubuntu'
99         default_storage_layout: 'lvm'
100         enable_http_proxy: true
101         disk_erase_with_secure_erase: false
102         dnssec_validation: 'no'
103         enable_third_party_drivers: true
104         network_discovery: 'enabled'
105         default_min_hwe_kernel: ${_param:hwe_kernel}
106     cluster:
107       saltstack_repo_xenial: "deb [arch=amd64] http://repo.saltstack.com/apt/ubuntu/16.04/amd64/2017.7/ xenial main"
108   linux:
109     system:
110       kernel:
111         ~boot_options:
112           - ipv6.disable=0
113     network:
114       interface:
115         mcpcontrol_interface:
116           enabled: true
117           name: ${_param:mcpcontrol_interface}
118           type: eth
119           proto: dhcp
120         primary_interface:
121           enabled: true
122           name: ${_param:primary_interface}
123           type: eth
124 {%- if conf.idf.fuel.jumphost.get('trunks', {}).get('mgmt', False) and (nm.vlan_mgmt | int > 0) %}
125           proto: manual
126           mtu: ${_param:interface_mtu}
127         primary_interface_vlan:
128           enabled: true
129           type: vlan
130           name: ${_param:primary_interface}.{{ nm.vlan_mgmt }}
131           use_interfaces:
132             - ${_param:primary_interface}
133 {%- endif %}
134           proto: static
135           mtu: ${_param:interface_mtu}
136           address: ${_param:infra_maas_node01_address}
137           netmask: ${_param:opnfv_net_mgmt_mask}
138         pxe_admin_interface:
139           enabled: true
140           name: ${_param:pxe_admin_interface}
141           mtu: ${_param:pxe_admin_interface_mtu}
142           proto: static
143           address: ${_param:single_address}
144           netmask: ${_param:opnfv_net_admin_mask}
145           type: eth