Skip to content

stolostron/backplane-operator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c961c65 · Mar 13, 2025
Mar 6, 2025
Mar 7, 2025
Feb 25, 2025
Mar 7, 2025
Sep 19, 2024
Feb 10, 2025
Mar 13, 2025
Feb 20, 2025
Mar 6, 2025
Mar 13, 2025
Sep 17, 2024
Jun 6, 2024
Dec 9, 2024
Mar 5, 2024
Oct 15, 2024
Jul 16, 2024
Jul 23, 2021
Feb 14, 2025
Jul 23, 2021
Jun 28, 2024
Nov 7, 2024
Aug 6, 2021
Oct 15, 2024
Jan 31, 2022
Feb 14, 2025
Jul 23, 2021
Sep 19, 2024
Feb 14, 2025
Feb 14, 2025
Feb 25, 2025
Jan 6, 2025

Repository files navigation

Backplane Operator

Operator for managing installation of Backplane components

Prerequisites

  • Go v1.23.4+
  • kubectl 1.19+
  • Operator-sdk v1.17.0+
  • Docker or Podman
  • Connection to an existing Kubernetes cluster

Installation

Before deploying, the CRDs need to be installed onto the cluster.

make install

Outside the Cluster

The operator can be run locally against the configured Kubernetes cluster in ~/.kube/config with the following command:

make run

Inside the Cluster

The operator can also run inside the cluster as a Deployment. To do that first build the container image and push to an accessible image registry:

  1. Build the image:
make docker-build IMG=<registry>/<imagename>:<tag>
# or
make podman-build IMG=<registry>/<imagename>:<tag>
  1. Push the image:
make docker-push IMG=<registry>/<imagename>:<tag>
# or
make podman-push IMG=<registry>/<imagename>:<tag>
  1. Deploy the Operator:
make deploy IMG=<registry>/<imagename>:<tag>