From 6a713e5eb413c3cdbe7c35d305fbccc75c754d85 Mon Sep 17 00:00:00 2001 From: kklinch0 Date: Fri, 13 Jun 2025 10:59:06 +0300 Subject: [PATCH] [bugfix] fix distro full bundle Signed-off-by: kklinch0 --- packages/core/platform/bundles/distro-full.yaml | 2 +- .../snapshot-controller/template/clusterissuer.yaml | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 packages/system/snapshot-controller/template/clusterissuer.yaml diff --git a/packages/core/platform/bundles/distro-full.yaml b/packages/core/platform/bundles/distro-full.yaml index aab1041c..8104979f 100644 --- a/packages/core/platform/bundles/distro-full.yaml +++ b/packages/core/platform/bundles/distro-full.yaml @@ -179,7 +179,7 @@ releases: releaseName: snapshot-controller chart: cozy-snapshot-controller namespace: cozy-snapshot-controller - dependsOn: [cilium,cert-manager-issuers] + dependsOn: [cilium] - name: objectstorage-controller releaseName: objectstorage-controller diff --git a/packages/system/snapshot-controller/template/clusterissuer.yaml b/packages/system/snapshot-controller/template/clusterissuer.yaml new file mode 100644 index 00000000..745a77c6 --- /dev/null +++ b/packages/system/snapshot-controller/template/clusterissuer.yaml @@ -0,0 +1,8 @@ +{{- if not (lookup "helm.toolkit.fluxcd.io/v2" "HelmRelease" "cozy-cert-manager" "cert-manager-issuers") }} +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: selfsigned-cluster-issuer +spec: + selfSigned: {} +{{- end }}