1. Create a single VM for the Control Plane Node by following the system requirement specifications based on the footprint.
  2. Create a single VM for the Worker Node by following the requirement specifications based on the footprint.
  3. Enable the following setting on both Control Plane Node and Worker Node VM by following the steps in the Configure Kubernetes Cluster VMs section of Preparing for Installation of vSphere Container Storage Plug-in.
    disk.EnableUUID=True
  4. Configure the repo file in the VM to point to the local YUM Server Repository, by performing the following procedure.
    • Configure the YUM Repository in the VM to point to the local YUM Server.
      • Edit the file /etc/yum.repos.d/local-ol8.repo and add the following contents.
        Note:
        • If file is not present, create a new file with same name as /etc/yum.repos.d/ local-rhel8.repo, and add the contents.
        • Replace yum-server-IP with the IP of the RHEL Repository VM setup mentioned in the previous steps. If any other repo file inside the directory /etc/yum.repos.d/ is pointing to a different YUM repository, then it needs to be deactivated.
          [local-baseos-rpms]
          name=Rhel-baseOS
          baseurl= http://<yum-server-ip>/repo/Rhel/rhel-8-for-x86_64-baseos-rpms
          gpgkey=http://<yum-server-ip>/RPM-GPG-KEY-redhat-release
          gpgcheck=1
          enabled=1
          
          [local-appstream-rpms]
          name=Rhel-appStream
          baseurl= http://<yum-server-ip>/repo/Rhel/rhel-8-for-x86_64-appstream-rpms
          gpgkey=http://<yum-server-ip>/RPM-GPG-KEY-redhat-release
          gpgcheck=1
          enabled=1
  5. Clone the Control Plane Node and Worker Node VMs from the VMs created in the step 1 and 2 as per the numbers recommended on the VMware Telco Cloud Service Assurance sizing sheet.
    Note: Ensure that all the nodes have the static IP address or the IP address MAC binding so that the IP addresses do not change across restarts.
  6. If the nfs-utils RPM is not available on the cluster node VMs then you must install it on all the cluster node VMs.
    yum install nfs-utils