[bitnami/argo-cd] Fix repo-server PDB label selector (#30391)

* [bitnami/argo-cd] Fix repo-server PDB label selector

Signed-off-by: Jan-Philipp Litza <jplitza@users.noreply.github.com>

* [bitnami/argo-cd] Bump version

Signed-off-by: Jan-Philipp Litza <jplitza@users.noreply.github.com>

* Update CHANGELOG.md

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

---------

Signed-off-by: Jan-Philipp Litza <jplitza@users.noreply.github.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Jan-Philipp Litza
2024-11-14 10:15:27 +01:00
committed by GitHub
parent a6a5283e07
commit d2b71c2cc9
3 changed files with 9 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 7.0.22 (2024-11-07)
## 7.0.23 (2024-11-11)
* [bitnami/argo-cd] Release 7.0.22 ([#30253](https://github.com/bitnami/charts/pull/30253))
* [bitnami/argo-cd] Fix repo-server PDB label selector ([#30391](https://github.com/bitnami/charts/pull/30391))
## <small>7.0.22 (2024-11-07)</small>
* [bitnami/argo-cd] Release 7.0.22 (#30253) ([981c935](https://github.com/bitnami/charts/commit/981c9350763c152831eaa8dc310b3abd585fd705)), closes [#30253](https://github.com/bitnami/charts/issues/30253)
## <small>7.0.21 (2024-11-04)</small>

View File

@@ -39,4 +39,4 @@ maintainers:
name: argo-cd
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/argo-cd
version: 7.0.22
version: 7.0.23

View File

@@ -10,7 +10,7 @@ metadata:
name: {{ include "argocd.repo-server" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: repoServer
app.kubernetes.io/component: repo-server
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
@@ -24,5 +24,5 @@ spec:
{{- $podLabels := include "common.tplvalues.merge" (dict "values" (list .Values.repoServer.podLabels .Values.commonLabels) "context" .) }}
selector:
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
app.kubernetes.io/component: repoServer
app.kubernetes.io/component: repo-server
{{- end }}