[bitnami/argo-cd] Bugfix cluster-config.yaml nil pointer evaluating interface {}.XXX (#28522)

* fix: bitnami/argo-cd - nil pointer evaluating interface {}.Namespace

error fix <.Release.Namespace>: nil pointer evaluating interface {}.Namespace

Signed-off-by: Hansol Yu <yhs1203@gmail.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Hansol Yu <yhs1203@gmail.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Sol-Git
2024-07-26 16:19:12 +09:00
committed by GitHub
parent 84b5e7467c
commit 1e2a00dda1
3 changed files with 28 additions and 24 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 6.6.8 (2024-07-25)
## 6.6.9 (2024-07-26)
* [bitnami/argo-cd] Release 6.6.8 ([#28399](https://github.com/bitnami/charts/pull/28399))
* [bitnami/argo-cd] Bugfix cluster-config.yaml nil pointer evaluating interface {}.XXX ([#28522](https://github.com/bitnami/charts/pull/28522))
## <small>6.6.8 (2024-07-25)</small>
* [bitnami/argo-cd] Release 6.6.8 (#28399) ([2c1ca0f](https://github.com/bitnami/charts/commit/2c1ca0fa691652683f0a644b67f4b08bc24fdc09)), closes [#28399](https://github.com/bitnami/charts/issues/28399)
## <small>6.6.7 (2024-07-24)</small>

View File

@@ -16,27 +16,27 @@ annotations:
apiVersion: v2
appVersion: 2.11.7
dependencies:
- condition: redis.enabled
name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 19.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
- condition: redis.enabled
name: redis
repository: oci://registry-1.docker.io/bitnamicharts
version: 19.x.x
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
tags:
- bitnami-common
version: 2.x.x
description: Argo CD is a continuous delivery tool for Kubernetes based on GitOps.
home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/argo-cd/img/argo-cd-stack-220x234.png
keywords:
- Continuous delivery
- Continuous deployment
- Devops
- Kubernetes
- Continuous delivery
- Continuous deployment
- Devops
- Kubernetes
maintainers:
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
- name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts
name: argo-cd
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/argo-cd
version: 6.6.8
- https://github.com/bitnami/charts/tree/main/bitnami/argo-cd
version: 6.6.9

View File

@@ -8,14 +8,14 @@ apiVersion: v1
kind: Secret
metadata:
name: {{ include "common.names.fullname" $ }}-cluster-{{ .name }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
namespace: {{ include "common.names.namespace" $ | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" $.Values.commonLabels "context" $ ) | nindent 4 }}
# Mandatory label
# Ref: https://argoproj.github.io/argo-cd/operator-manual/declarative-setup/#atomic-configuration
app.kubernetes.io/part-of: argocd
argocd.argoproj.io/secret-type: cluster
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- if $.Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $.Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
stringData:
@@ -25,4 +25,4 @@ stringData:
config: |
{{- .config | toPrettyJson | nindent 4 }}
---
{{- end }}
{{- end }}