summaryrefslogtreecommitdiffstats
path: root/config/installers/fuel/pod_config.yml.j2
blob: 657bc2c1f085f7a78a499651c90cc69501da2d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
##############################################################################
# Copyright (c) 2018 Mirantis Inc., Enea AB and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
{%- import 'net_map.j2' as nm with context %}
---
{%- if nm.cluster.has_baremetal_nodes %}
parameters:
  maas:
    region:
      machines:
      {%- set ctl_roles = 3 if 'virtual' not in conf else conf.virtual.nodes.control | length %}
      {%- set has_cmp = True if 'virtual' not in conf else 'compute' in conf.virtual.nodes %}
      {%- for node in conf.nodes %}
      {%- if (node.node.type == 'baremetal' and (
             (has_cmp and loop.index > nm.cmp001.idx) or loop.index0 < ctl_roles)) %}
        {%- if loop.index > nm.cmp001.idx %}
        cmp{{ '%03d' | format(loop.index - nm.cmp001.idx) }}:
        {%- elif 'virtual' not in conf %} {#- strictly for Pharos verify job #}
        kvm{{ '%02d' | format(loop.index) }}:
        {%- else %}
        {{ conf.virtual.nodes.control[loop.index0] }}:
        {%- endif %}
          interface:
            mac: {{ node.interfaces[nm.idx_admin].mac_address }}
          power_parameters:
            power_address: {{ node.remote_management.address.rsplit('/')[0] }}
            power_pass: {{ node.remote_management.pass }}
            power_type: {{ node.remote_management.type }}
            power_user: {{ node.remote_management.user }}
          architecture: {{ node.node.arch | dpkg_arch }}/generic
          distro_series: bionic
          hwe_kernel: ${_param:hwe_kernel}
          {%- if loop.index > nm.cmp001.idx %}
          disk_layout:
            type: lvm
            root_device: sda
            volume_group: vgroot
            volume_name: lvroot
            volume_size: 100
          {%- endif %}
      {%- endif %}
      {%- endfor %}
{%- endif %}