From bc8a4016daddf8fa47c60b496e4d54b34bcc3aa4 Mon Sep 17 00:00:00 2001 From: Johnny Bieren Date: Mon, 4 Mar 2024 09:29:26 -0500 Subject: [PATCH] feat: add default ReleaseServiceConfig This commit adds a default ReleaseServiceConfig to the manifests directory so one is created when the operator is deployed. Signed-off-by: Johnny Bieren --- config/manifests/kustomization.yaml | 1 + config/manifests/release_service_config.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 config/manifests/release_service_config.yaml diff --git a/config/manifests/kustomization.yaml b/config/manifests/kustomization.yaml index 34e5e3f2..21ecd5b8 100644 --- a/config/manifests/kustomization.yaml +++ b/config/manifests/kustomization.yaml @@ -2,6 +2,7 @@ # used to generate the 'manifests/' directory in a bundle. resources: - bases/release-service.clusterserviceversion.yaml +- release_service_config.yaml - ../default - ../samples - ../scorecard diff --git a/config/manifests/release_service_config.yaml b/config/manifests/release_service_config.yaml new file mode 100644 index 00000000..321bc653 --- /dev/null +++ b/config/manifests/release_service_config.yaml @@ -0,0 +1,6 @@ +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleaseServiceConfig +metadata: + name: config +spec: + debug: false