ocp/ipi_bm_install-config.md
... ...
@@ -0,0 +1,72 @@
1
+apiVersion: v1
2
+baseDomain: <domain>
3
+metadata:
4
+ name: <cluster_name>
5
+networking:
6
+ machineNetwork:
7
+ - cidr: <public_cidr>
8
+ networkType: OVNKubernetes
9
+compute:
10
+- name: worker
11
+ replicas: 2
12
+controlPlane:
13
+ name: master
14
+ replicas: 3
15
+ platform:
16
+ baremetal: {}
17
+platform:
18
+ baremetal:
19
+ apiVIPs:
20
+ - <api_ip>
21
+ ingressVIPs:
22
+ - <wildcard_ip>
23
+ provisioningNetworkCIDR: <CIDR>
24
+ bootstrapExternalStaticIP: <bootstrap_static_ip_address>
25
+ bootstrapExternalStaticGateway: <bootstrap_static_gateway>
26
+ bootstrapExternalStaticDNS: <bootstrap_static_dns>
27
+ hosts:
28
+ - name: openshift-master-0
29
+ role: master
30
+ bmc:
31
+ address: ipmi://<out_of_band_ip>
32
+ username: <user>
33
+ password: <password>
34
+ bootMACAddress: <NIC1_mac_address>
35
+ rootDeviceHints:
36
+ deviceName: "<installation_disk_drive_path>"
37
+ - name: <openshift_master_1>
38
+ role: master
39
+ bmc:
40
+ address: ipmi://<out_of_band_ip>
41
+ username: <user>
42
+ password: <password>
43
+ bootMACAddress: <NIC1_mac_address>
44
+ rootDeviceHints:
45
+ deviceName: "<installation_disk_drive_path>"
46
+ - name: <openshift_master_2>
47
+ role: master
48
+ bmc:
49
+ address: ipmi://<out_of_band_ip>
50
+ username: <user>
51
+ password: <password>
52
+ bootMACAddress: <NIC1_mac_address>
53
+ rootDeviceHints:
54
+ deviceName: "<installation_disk_drive_path>"
55
+ - name: <openshift_worker_0>
56
+ role: worker
57
+ bmc:
58
+ address: ipmi://<out_of_band_ip>
59
+ username: <user>
60
+ password: <password>
61
+ bootMACAddress: <NIC1_mac_address>
62
+ - name: <openshift_worker_1>
63
+ role: worker
64
+ bmc:
65
+ address: ipmi://<out_of_band_ip>
66
+ username: <user>
67
+ password: <password>
68
+ bootMACAddress: <NIC1_mac_address>
69
+ rootDeviceHints:
70
+ deviceName: "<installation_disk_drive_path>"
71
+pullSecret: '<pull_secret>'
72
+sshKey: '<ssh_pub_key>'
... ...
\ No newline at end of file