fix(argo-cd): Don't install CRDs for disabled components (#1596)

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
main argo-cd-5.12.1
Marco Kilchhofer 2022-10-31 00:48:09 +01:00 committed by GitHub
parent caf1f4de02
commit 02463f3009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 5 deletions

View File

@ -3,7 +3,7 @@ appVersion: v2.5.0
kubeVersion: ">=1.22.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 5.12.0
version: 5.12.1
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
@ -23,5 +23,4 @@ dependencies:
condition: redis-ha.enabled
annotations:
artifacthub.io/changes: |
- "[Added]: New TLS server configuration via server.certificateSecret"
- "[Deprecated]: TLS configuration via configs.secret.argocdServerTlsConfig"
- "[Fixed]: Don't install CRDs for disabled components"

View File

@ -1,4 +1,4 @@
{{- if .Values.crds.install }}
{{- if and .Values.crds.install .Values.applicationSet.enabled }}
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:

View File

@ -1,4 +1,4 @@
{{- if .Values.crds.install }}
{{- if and .Values.crds.install .Values.server.extensions.enabled }}
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata: