Files
charts/bitnami/keycloak/templates/tls-pass-secret.yaml
ROUINEB 9b3915b649 [bitnami/keycloak] Fix: Rename duplicated secret labels (#36254)
* [bitnami/keycloak] Fix: Rename duplicated secret labels

this commit 0941bbcbec introduced duplicated
label `app.kubernetes.io/component`, which breaks strict YAML validation.

I think the desired output was meant to have these two labels:

```yaml
app.kubernetes.io/component: keycloak
app.kubernetes.io/part-of: keycloak
```

Signed-off-by: Hamza Rouineb <hamza@rouineb.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: Hamza Rouineb <hamza@rouineb.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Gonzalo Gomez Gracia <gonzalo.gomez@broadcom.com>
2025-10-08 14:43:26 +00:00

27 lines
1.1 KiB
YAML

{{- /*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and (not .Values.tls.usePemCerts) (.Values.tls.autoGenerated.enabled) (not .Values.tls.passwordsSecret) (or .Values.tls.keystorePassword .Values.tls.truststorePassword) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-tls-passwords" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }}
app.kubernetes.io/component: keycloak
app.kubernetes.io/part-of: keycloak
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }}
{{- end }}
type: Opaque
data:
{{- if .Values.tls.keystorePassword }}
tls-keystore-password: {{ .Values.tls.keystorePassword | b64enc | quote }}
{{- end }}
{{- if .Values.tls.truststorePassword }}
tls-truststore-password: {{ .Values.tls.truststorePassword | b64enc | quote }}
{{- end }}
{{- end }}