Skip to content

Commit b1f89ca

Browse files
committed
wip
1 parent c6d06b9 commit b1f89ca

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

ocp/4.15/install_upi/README.adoc

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,8 @@ ansible-playbook ocp/4.15/install_upi/ansible/01-proxmox-vms.yaml \
465465
-e '{"selected_groups": ["ocp_compute_node"]}'
466466
----
467467

468+
Start the `compute-node` VMs to execute the ignition installation.
469+
468470
[source,bash]
469471
----
470472
ansible-playbook ocp/4.15/install_upi/ansible/20-proxmox-prepare-coreos-install.yaml \
@@ -482,7 +484,8 @@ ansible-playbook ocp/4.15/install_upi/ansible/25-ocp-services-show-rhcos-info.ya
482484
-e @ocp/4.15/install_upi/ansible/defaults/main.yaml
483485
----
484486

485-
The VMs are setup so it's time to start the OpenShift cluster deployment.
487+
Once all the VMs show the `Install complete` message the VMs are setup. It's
488+
now time to start the deployment of the OpenShift compute nodes.
486489
Stop the VMs, reset the boot and CD ROM configuration and start the VMS.
487490

488491
[source,bash]
@@ -492,6 +495,32 @@ ansible-playbook ocp/4.15/install_upi/ansible/28-proxmox-vm-start-deployment.yam
492495
-e '{"selected_groups": ["ocp_compute_node"]}'
493496
----
494497

498+
Wait for the installation to finish.
499+
500+
Source: https://docs.openshift.com/container-platform/4.15/installing/installing_platform_agnostic/installing-platform-agnostic.html
501+
502+
Review the pending CSRs and ensure that you see the client requests with the
503+
Pending or Approved status for each machine added to the cluster.
504+
505+
[source,bash]
506+
----
507+
oc get csr
508+
----
509+
510+
Approve each of the CSR
511+
512+
[source,bash]
513+
----
514+
oc adm certificate approve <csr_name>
515+
----
516+
517+
To approve all pending CSRs, run the following command:
518+
519+
[source,bash]
520+
----
521+
oc get csr -o go-template='{{range .items}}{{if not .status}}{{.metadata.name}}{{"\n"}}{{end}}{{end}}' | xargs --no-run-if-empty oc adm certificate approve
522+
----
523+
495524
== Cleanup
496525

497526
[.lead]

0 commit comments

Comments
 (0)