Skip to content

Commit f70b0af

Browse files
authored
Merge pull request #105 from JaimeMagiera/upi-vSphere
Moving and modifying the original vSphere UPI guide
2 parents aefc545 + 65b2853 commit f70b0af

File tree

3 files changed

+92
-30
lines changed

3 files changed

+92
-30
lines changed

Guides/UPI/vSphere/vSphere.md Guides/UPI/vSphere_govc/README.md

+92-30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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.
33

44
## Assumptions
55
- 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
1313
Find and download an image of FCOS for VMware vSphere from https://getfedora.org/en/coreos/download/
1414

1515
```
16-
wget https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/31.20200113.3.1/x86_64/fedora-coreos-31.20200113.3.1-vmware.x86_64.ova
16+
wget https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/31.20200113.3.1/x86_64/fedora-coreos-31.20200113.3.1-vmware.x86_64.ova
1717
1818
# Import into vSphere
1919
govc import.ova -ds=<datastore_name> \
@@ -23,20 +23,64 @@ govc import.ova -ds=<datastore_name> \
2323

2424
### Create FCOS VMs
2525
```
26-
for vm in \
27-
okd4-master-1 okd4-master-2 okd4-master-3 \
28-
okd4-worker-1 okd4-worker-2 okd4-worker-3 \
29-
okd4-bootstrap; do
30-
govc vm.clone -vm fedora-coreos-31.20200113.3.1-vmware.x86_64 \
31-
-ds <datastore_name> -folder <vm_folder> -on=false \
32-
-c=4 -m=8192 -net=<network_name> $vm
33-
34-
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.
29+
30+
template_name="fedora-coreos-31.20200113.3.1-vmware.x86_64"
31+
cluster_name=<cluster_name>
32+
datastore_name=<datastore_name>
33+
vm_folder=<folder_path>
34+
network_name=<network_name>
35+
master_node_count=<master_node_count>
36+
worker_node_count=<worker_node_count>
37+
38+
# Create the master nodes
39+
40+
for (( i=1; i<=${master_node_count}; i++ )); do
41+
vm="${cluster_name}-master-${i}"
42+
govc vm.clone -vm "${template_name}" \
43+
-ds "${datastore_name}" \
44+
-folder "${vm_folder}" \
45+
-on="false" \
46+
-c="4" -m="8192" \
47+
-net="${network_name}" \
48+
$vm
49+
govc vm.disk.change -vm $vm -disk.label "Hard disk 1" -size 120G
3550
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+
3680
```
3781

3882
### 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)
4084

4185
You will also need working DHCP on the network the cluster hosts are connected to. The DHCP server should assign the hosts unique FQDNs.
4286

@@ -109,24 +153,42 @@ Steps which need to be done:
109153
- Set the VM property `disk.EnableUUID` to `TRUE`
110154

111155
```
112-
for host in okd4-master-1 okd4-master-2 okd4-master-3; do
113-
govc vm.change -vm $host \
114-
-e guestinfo.ignition.config.data="$(cat master.ign | base64 -w0)" \
115-
-e guestinfo.ignition.config.data.encoding="base64" \
116-
-e disk.EnableUUID="TRUE"
156+
#!/bin/bash
157+
# Title: UPI-vSphere-AddMetadata
158+
# 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.
159+
160+
cluster_name=<cluster_name>
161+
master_node_count=<master_node_count>
162+
worker_node_count=<worker_node_count>
163+
164+
# Set the metadata on the master nodes
165+
166+
for (( i=1; i<=${master_node_count}; i++ )); do
167+
vm="${cluster_name}-master-${i}"
168+
govc vm.change -vm $vm \
169+
-e guestinfo.ignition.config.data="$(cat master.ign | base64 -w0)" \
170+
-e guestinfo.ignition.config.data.encoding="base64" \
171+
-e disk.EnableUUID="TRUE"
117172
done
118173
119-
for host in okd4-worker-1 okd4-worker-2 okd4-worker-3; do
120-
govc vm.change -vm $host \
121-
-e guestinfo.ignition.config.data="$(cat worker.ign | base64 -w0)" \
122-
-e guestinfo.ignition.config.data.encoding="base64" \
123-
-e disk.EnableUUID="TRUE"
174+
# Set the metadata on the worker nodes
175+
176+
for (( i=1; i<=${worker_node_count}; i++ )); do
177+
vm="${cluster_name}-worker-${i}"
178+
govc vm.change -vm $vm \
179+
-e guestinfo.ignition.config.data="$(cat worker.ign | base64 -w0)" \
180+
-e guestinfo.ignition.config.data.encoding="base64" \
181+
-e disk.EnableUUID="TRUE"
124182
done
125183
126-
govc vm.change -vm okd4-bootstrap \
127-
-e guestinfo.ignition.config.data="$(cat append-bootstrap.ign | base64 -w0)" \
128-
-e guestinfo.ignition.config.data.encoding="base64" \
129-
-e disk.EnableUUID="TRUE"
184+
# Set the metadata on the bootstrap node
185+
186+
vm="${cluster_name}-bootstrap"
187+
govc vm.change -vm $vm \
188+
-e guestinfo.ignition.config.data="$(cat append-bootstrap.ign | base64 -w0)" \
189+
-e guestinfo.ignition.config.data.encoding="base64" \
190+
-e disk.EnableUUID="TRUE"
191+
130192
```
131193

132194
### Start the bootstrap server
@@ -149,17 +211,17 @@ For debugging you can use `sudo crictl ps` and `sudo crictl logs <container_id>`
149211
Now that every servers is up and running, they are ready to form the cluster.
150212
Bootstrap will start as soon as the master nodes finish forming the etcd cluster.
151213

152-
Meanwhile just run the OpenShift Installer in order to check the status of the installation:
214+
Meanwhile just run the OKD Installer in order to check the status of the installation:
153215

154216
`$ openshift-installer wait-for bootstrap-complete --log-level debug`
155217

156218
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.
158220

159221
#### Intermediate stage
160222
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.
161223

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.
163225

164226
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).
165227

@@ -185,7 +247,7 @@ If you want instead to use an ephemeral registry, just run the following command
185247
**NOTE:** While `emptyDir` is suitable for non-production or temporary cluster, it is not recommended for production environments.
186248

187249
#### 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.
189251

190252
`$ openshift-install wait-for install-complete --log-level debug`
191253

0 commit comments

Comments
 (0)