forked from karmab/kcli-ztp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkcli_plan_ztp.yml
60 lines (57 loc) · 1.65 KB
/
kcli_plan_ztp.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
{% if lab and ztp_spoke_api_ip != None and ztp_spoke_ingress_ip != None %}
api-{{ ztp_spoke_name }}:
type: dns
net: {{ baremetal_net }}
ip: {{ ztp_spoke_api_ip }}
alias:
- api.{{ ztp_spoke_name }}.{{ domain }}
- api-int.{{ ztp_spoke_name }}.{{ domain }}
apps-{{ ztp_spoke_name }}:
type: dns
net: {{ baremetal_net }}
ip: {{ ztp_spoke_ingress_ip }}
alias:
- console-openshift-console.apps.{{ ztp_spoke_name }}.{{ domain }}
- oauth-openshift.apps.{{ ztp_spoke_name }}.{{ domain }}
- prometheus-k8s-openshift-monitoring.apps.{{ ztp_spoke_name }}.{{ domain }}
- canary-openshift-ingress-canary.apps.{{ ztp_spoke_name }}.{{ domain }}
- assisted-service-open-cluster-management.apps.{{ ztp_spoke_name }}.{{ domain }}
- assisted-service-assisted-installer.apps.{{ ztp_spoke_name }}.{{ domain }}
{% endif %}
{% if ztp_virtual_nodes %}
{% for num in range(0, ztp_virtual_nodes_number) %}
{{ cluster }}-ztp-node-{{ num }}:
pool: {{ pool }}
numcpus: {{ ztp_virtual_nodes_numcpus }}
start: false
cloudinit: false
# uefi: {{ 'true' }}
uefi_legacy: True
memory: {{ ztp_virtual_nodes_memory }}
nets:
- name: {{ baremetal_net }}
mac: {{ ztp_virtual_nodes_baremetal_mac_prefix + ":" + "%02.d" | format(num + 1)| string }}
disks:
- size: {{ ztp_virtual_nodes_disk_size }}
interface: scsi
{% endfor %}
{% endif %}
{{ cluster }}-installer:
baseplan: kcli_plan.yml
files:
- ztp_assisted-service.sample.yml
- ztp_spoke.sample.yml
- ztp.sh
- ztp_bmc.yml
{% if acm %}
- acm_install.yml
- acm_cr.yml
{% else %}
- ai_install.yml
{% endif %}
- path: /root/bin/gen_registries.py
origin: helpers/gen_registries.py
scripts:
{% if deploy_openshift %}
- ztp.sh
{% endif %}