blob: 769e55db7836f1fcce2a720471d134be6cdf8185 (
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
|
##############################################################################
# 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:
{%- for node in conf.nodes %}
{%- if node.node.type == 'baremetal' %}
{%- if loop.index > nm.cmp001.idx %}
{{ 'cmp%03d' | format(loop.index - nm.cmp001.idx) }}:
{%- else %}
{{ 'kvm%02d' | format(loop.index) }}:
{%- endif %}
interface:
mac: {{ node.interfaces[nm.idx_admin].mac_address }}
power_parameters:
power_address: {{ node.remote_management.address.rsplit('/')[0] }}
power_password: {{ 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: xenial
hwe_kernel: ${_param:hwe_kernel}
{%- endif %}
{%- endfor %}
{%- endif %}
|