You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Guides/UPI/vSphere_govc/README.md
+92-30
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# Install OKD 4 on top of an UPI VMware vSphere configuration
2
-
This guide explains how to provision Fedora CoreOS on vSphere and install OKD on it.
2
+
This guide explains how to provision Fedora CoreOS on vSphere and install OKD on it. The guide includes bash scripts to automate the govc command line tool for interacting with the vSphere cluster.
3
3
4
4
## Assumptions
5
5
- You have `openshift-installer` and `oc` for the OKD version you're installing in your PATH. See [Getting Started](/README.md#getting-started)
@@ -13,7 +13,7 @@ This guide explains how to provision Fedora CoreOS on vSphere and install OKD on
13
13
Find and download an image of FCOS for VMware vSphere from https://getfedora.org/en/coreos/download/
govc vm.disk.change -vm $vm -disk.label "Hard disk 1" -size 120G
26
+
#!/bin/bash
27
+
# Title: UPI-vSphere-GenerateVMs
28
+
# Description: This is an example bash script to create the VMs iteratively. Set the values for cluster_name, datastore_name, vm_folder, network_name, master_node_count, and worker_node_count.
govc vm.disk.change -vm $vm -disk.label "Hard disk 1" -size 120G
35
50
done
51
+
52
+
# Create the worker nodes
53
+
54
+
for (( i=1; i<=${worker_node_count}; i++ )); do
55
+
vm="${cluster_name}-worker-${i}"
56
+
govc vm.clone -vm "${template_name}" \
57
+
-ds "${datastore_name}" \
58
+
-folder "${vm_folder}" \
59
+
-on="false" \
60
+
-c="4" -m="8192" \
61
+
-net="${network_name}" \
62
+
$vm
63
+
govc vm.disk.change -vm $vm -disk.label "Hard disk 1" -size 120G
64
+
done
65
+
66
+
67
+
# Create the bootstrap node
68
+
69
+
vm="${cluster_name}-bootstrap"
70
+
govc vm.clone -vm "${template_name}" \
71
+
-ds "${datastore_name}" \
72
+
-folder "${vm_folder}" \
73
+
-on="false" \
74
+
-c="4" -m="8192" \
75
+
-net="${network_name}" \
76
+
$vm
77
+
govc vm.disk.change -vm $vm -disk.label "Hard disk 1" -size 120G
78
+
79
+
36
80
```
37
81
38
82
### Configure DNS, DHCP and LB
39
-
The installation requires specific configuration of DNS and a load balancer. The requirements are listed in the official OKD documentation: [Creating the user-provisioned infrastructure](https://docs.okd.io/latest/installing/installing_vsphere/installing-vsphere.html#installation-infrastructure-user-infra_installing-vsphere). Example configurations are available at [requirements](/Guides/UPI/vSphere/Requirements)
83
+
The installation requires specific configuration of DNS and a load balancer. The requirements are listed in the official Openshift documentation: [Creating the user-provisioned infrastructure](https://docs.okd.io/latest/installing/installing_vsphere/installing-vsphere.html#installation-infrastructure-user-infra_installing-vsphere). Example configurations are available at [requirements](/Guides/UPI/vSphere_govc/Requirements)
40
84
41
85
You will also need working DHCP on the network the cluster hosts are connected to. The DHCP server should assign the hosts unique FQDNs.
42
86
@@ -109,24 +153,42 @@ Steps which need to be done:
109
153
- Set the VM property `disk.EnableUUID` to `TRUE`
110
154
111
155
```
112
-
for host in okd4-master-1 okd4-master-2 okd4-master-3; do
# Description: This is an example bash script to set the metadata on the VMs iteratively. Set the values for cluster_name, master_node_count, and worker_node_count.
The installer will now check for the availability of the Kubernetes API and then for the `bootstrap-complete` event that will be spawned after the cluster has almost finished to install every cluster operator.
157
-
OpenShift installer will wait for 30 minutes. It should be enough to complete the bootstrap process.
219
+
OKD installer will wait for 30 minutes. It should be enough to complete the bootstrap process.
158
220
159
221
#### Intermediate stage
160
222
When the bootstrap is finished you have to approve the nodes CSR, configure the storage backend for the `image-registry` cluster operator, and shutting down the bootstrap node.
161
223
162
-
Shut down the bootstrap vm and then remove it from the pools of the load balancer. If you followed the [LB_HAProxy.md](Requirements/LB_HAProxy.md) guide to configure HAProxy as you load balancer, just comment the two `bootstrap` records in the configuration file, and then restart its service.
224
+
Shut down the bootstrap vm and then remove it from the pools of the load balancer. If you followed the [LB_HAProxy.md](../Requirements/LB_HAProxy.md) guide to configure HAProxy as you load balancer, just comment the two `bootstrap` records in the configuration file, and then restart its service.
163
225
164
226
After the bootstrap vm is offline, authenticate as `system:admin` in OKD, by using the `kubeconfig` file, which was created when Ingnition configs were [generated](#generate-the-ignition-configuration-files).
165
227
@@ -185,7 +247,7 @@ If you want instead to use an ephemeral registry, just run the following command
185
247
**NOTE:** While `emptyDir` is suitable for non-production or temporary cluster, it is not recommended for production environments.
186
248
187
249
#### Final stage
188
-
Now that everything is configured run the OpenShift installer again to wait for the `install-complete` event.
250
+
Now that everything is configured run the OKD installer again to wait for the `install-complete` event.
0 commit comments