Skip to content

loganmc10/openshift-edge-installer

Repository files navigation

Overview

The purpose of this project is to ease the setup of a provisioning cluster, as well as ease the process of installing an edge cluster.

After the installation of an edge cluster is complete, the edge cluster does not depend on the provisioning cluster for anything. The provisioning cluster is simply an installer.

Prerequisites

  • Provisioning Cluster:
    • Pre-existing OpenShift cluster (SNO, compact, or standard).
    • If there is not an existing default StorageClass, ODF will be installed. ODF requires each node to have 2 disks (one for the OS, and one for ODF).
  • Edge Cluster:
    • OpenShift 4.12+
    • Provisioning cluster needs to be configured first.
    • Target must be a bare metal cluster (SNO, compact, or standard).
    • If ODF is being installed, each node needs to have 2 disks (one for the OS, and one for ODF).
  • Local machine:
    • Install the following on your machine:
      • Ansible
      • Ansible collections: ansible-galaxy collection install kubernetes.core community.general ansible.utils
      • oc binary
    • Alternatively, use the provided container. Usage instructions are included in the README for each playbook.
  • Mirror:
    • Both the provisioning cluster and the edge cluster should be configured to use the same registry. If they are different (for instance, if the provisioning cluster is connected and the edge cluster is going to be disconnected) the edge cluster may not be able to pull the images required by the installer agent.

Provisioning Cluster

The Ansible playbook does not handle installing the provisioning cluster itself, there are already many options for this (IPI, UPI, Assisted Installer, Agent-based installer). On the provisioning cluster, the playbook installs the Multicluster Engine Operator and configures it to handle agent-based installs.

Edge Cluster

The edge cluster is installed by creating a slightly modified install-config.yaml file (similar to an IPI install) and passing it to the Ansible playbook. The playbook uses the values from install-config.yaml to create the necessary CRs which will allow the Multicluster Engine on the provisioning cluster to perform the installation.

Notes

  • Connected and disconnected/mirrored installations are both supported.
    • If you are using a mirror registry, it should be populated using the oc mirror plugin.
  • Only bare metal installations are supported for the edge cluster. The provisioning cluster can be any platform.