forked from argoproj/argo-helm
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
parent
caf1f4de02
commit
02463f3009
|
@ -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"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{- if .Values.crds.install }}
|
||||
{{- if and .Values.crds.install .Values.applicationSet.enabled }}
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue