fix(argo-cd): Fix migration path for server configs (#1585)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
2cdd2ba687
commit
90aa8962a0
4 changed files with 6 additions and 7 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.5.0
|
appVersion: v2.5.0
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.8.5
|
version: 5.8.6
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -22,5 +22,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Cleanup indentation in Redis deployment manifest"
|
- "[Fixed]: Migration of configs for users who create them manually"
|
||||||
- "[Fixed]: Global image pull policy works with Redis"
|
|
||||||
|
|
|
@ -34,10 +34,10 @@ DEPRECATED option repoServer.logFormat - Use configs.params.repoServer.log.forma
|
||||||
{{- if .Values.repoServer.logLevel }}
|
{{- if .Values.repoServer.logLevel }}
|
||||||
DEPRECATED option repoServer.logLevel - Use configs.params.repoServer.log.level
|
DEPRECATED option repoServer.logLevel - Use configs.params.repoServer.log.level
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.server.config .Values.server.configEnabled .Values.server.configAnnotations }}
|
{{- if or .Values.server.config (hasKey .Values.server "configEnabled") .Values.server.configAnnotations }}
|
||||||
DEPRECATED option server.config - Use configs.cm
|
DEPRECATED option server.config - Use configs.cm
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.server.rbacConfig .Values.server.rbacConfigCreate .Values.server.rbacConfigAnnotations }}
|
{{- if or .Values.server.rbacConfig (hasKey .Values.server "rbacConfigCreate") .Values.server.rbacConfigAnnotations }}
|
||||||
DEPRECATED option server.rbacConfig - Use configs.rbac
|
DEPRECATED option server.rbacConfig - Use configs.rbac
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.controller.service }}
|
{{- if .Values.controller.service }}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{{- if (coalesce .Values.server.configEnabled .Values.configs.cm.create) }}
|
{{- if (hasKey .Values.server "configEnabled") | ternary .Values.server.configEnabled .Values.configs.cm.create }}
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{{- if (coalesce .Values.server.rbacConfigCreate .Values.configs.rbac.create) }}
|
{{- if (hasKey .Values.server "rbacConfigCreate") | ternary .Values.server.rbacConfigCreate .Values.configs.rbac.create }}
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
|
Loading…
Reference in a new issue