forked from karmab/kcli-ztp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkcli_plan.yml
105 lines (104 loc) · 2.82 KB
/
kcli_plan.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{{ image }}:
type: image
url: {{ image_url }}
{{ cluster }}-installer:
image: {{ image }}
playbook: {{ playbook }}
pool: {{ pool }}
wait: {{ installer_wait }}
numcpus: {{ numcpus }}
uefi_legacy: false
reservedns: {{ True if lab else False }}
keys: {{ keys }}
{% if 'rhel' in image %}
rhnregister: {{ rhnregister }}
{% endif %}
networkwait: {{ rhnwait }}
memory: {{ memory }}
privatekey: true
notify: {{ notify }}
{% if deploy_openshift %}
notifyscript: {{ notifyscript }}
{% elif launch_steps %}
notifycmd: ls /root/bin/openshift-baremetal-install
{% else %}
notifycmd: echo machine $(hostname) ready at $(hostname -I)
{% endif %}
nets:
- name: {{ baremetal_net }}
{% if installer_mac != None %}
mac: {{ installer_mac }}
{% endif %}
{% if provisioning_enable %}
- name: {{ provisioning_net }}
noconf: yes
{% endif %}
{% if baremetal_cidr != None and ':' in baremetal_cidr and not dualstack %}
- default
{% endif %}
disks:
- {{ disk_size }}
files:
- path: /etc/sushy.conf
origin: helpers/sushy.conf
- path: /root/00_virtual.sh
origin: {{ '00_virtual.sh.redfish' if not provisioning_enable else '00_virtual.sh.' + virtual_protocol }}
- 01_patch_installconfig.sh
- 02_packages.sh
- 03_network.sh
- 04_get_clients.sh
- 05_cache.sh
- 06_disconnected.sh
- 065_olm.sh
- 07_nbde.sh
- 08_ntp.sh
- 09_deploy_openshift.sh
- 10_nfs.sh
- 10_nfs.yml
- install-config.yaml
- clouds.yaml
- .bashrc
- extra_worker.yml
- origin: {{ pullsecret }}
path: /root/openshift_pull.json
- path: /root/bin/ipmi.py
origin: helpers/ipmi.py
- path: /root/bin/vbmc.py
origin: helpers/vbmc.py
- path: /root/bin/redfish.py
origin: helpers/redfish.py
- path: /root/bin/sushy.py
origin: helpers/sushy.py
- path: /usr/lib/systemd/system/sushy.service
origin: helpers/sushy.service
- path: /root/bin/clean.sh
origin: helpers/clean.sh
- path: /root/bin/set_ironic_creds.sh
origin: helpers/set_ironic_creds.sh
render: false
- path: /root/manifests
origin: manifests
- 99-openshift-tang-encryption-clevis.sample.yaml
- 99-openshift-tang-encryption-ka.sample.yaml
- 99-openshift-chrony.sample.yaml
- 99-openshift-ingress-controller-master.yaml
- 99-operatorhub.yaml
{% for ca in cas %}
{% set num = loop.index0 %}
- path: /etc/pki/ca-trust/source/anchors/RH-IT-Root-CA{{ num }}.crt
content: |
{{ ca |certificate | replace('\n', '\n ') }}
{% endfor %}
{% if http_proxy != None %}
- path: /etc/profile.d/proxy.sh
origin: proxy.sh
mode: 644
- .proxy.sh
{% endif %}
{% if launch_steps %}
scripts:
{% if build %}
- helpers/build.sh
{% endif %}
- deploy.sh
{% endif %}