From a0fb1cb598a678650ed431d5cc7a90fff45dcd85 Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Tue, 27 Feb 2024 11:47:30 +0100 Subject: [PATCH] feat(olm): adding operator lifecycle manager This deployment and crd allow us to use https://operatorhub.io/ this source is very usefull for operator deployments --- base/kustomization.yaml | 1 + base/olm/kustomization.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 base/olm/kustomization.yaml diff --git a/base/kustomization.yaml b/base/kustomization.yaml index f1a47f4..9a164b6 100644 --- a/base/kustomization.yaml +++ b/base/kustomization.yaml @@ -2,6 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization bases: +- ./olm - ./metallb - https://github.com/cert-manager/cert-manager/releases/download/v1.10.0/cert-manager.yaml - ./rabbitmq diff --git a/base/olm/kustomization.yaml b/base/olm/kustomization.yaml new file mode 100644 index 0000000..d8493b0 --- /dev/null +++ b/base/olm/kustomization.yaml @@ -0,0 +1,6 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +resources: +- https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.27.0/crds.yaml +- https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.27.0/olm.yaml -- 2.17.1