kxr / ocp4_setup_upi_kvm

Script to Setup an OpenShift 4 UPI Cluster on KVM. Based on this guide: https://kxr.me/2019/08/17/openshift-4-upi-install-libvirt-kvm/
50 stars 55 forks source link

Unable to add nodes using ./add_node.sh for latest stable release (4.7.13) #26

Closed gary-crowe closed 3 years ago

gary-crowe commented 3 years ago

I cannot add nodes using the add_node.sh script after deploying latest stable cluster (4.7.13). It appears that the script utilises coreos.inst.image_url but should use: coreos.live.rootfs_url=

I built my cluster using: ./ocp4_setup_upi_kvm.sh --ocp-version stable

Looks like the logic to determine string is present in the install script. Perhaps it should be extended into the add.node.sh script?

kxr commented 3 years ago

@gary-crowe Spot on. You are right. I updated my script to handle newer versions of OpenShift that need coreos.live.rootfs_url instead of coreos.inst.image_url, but forgot to update that in add_node.sh script. Thank you for pointing this out. I will fix it.

kxr commented 3 years ago

Fixed in 18c1ee0