Files
charts/bitnami/apisix/templates/dashboard/secret.yaml
Javier J. Salmerón García e41a46c06a [bitnami/apisix] feat: 📝 Allow password update via values.yaml (#30682)
* [bitnami/apisix] feat:  📝 Allow password update via values.yaml

Signed-off-by: Javier J. Salmerón García <javier.salmeron@broadcom.com>

* Update CHANGELOG.md

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

---------

Signed-off-by: Javier J. Salmerón García <javier.salmeron@broadcom.com>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
2024-11-29 12:18:56 +01:00

24 lines
1.2 KiB
YAML

{{- /*
Copyright Broadcom, Inc. All Rights Reserved.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and .Values.dashboard.enabled (not .Values.dashboard.existingSecret) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "apisix.dashboard.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
{{- $versionLabel := dict "app.kubernetes.io/version" ( include "common.images.version" ( dict "imageRoot" .Values.dashboard.image "chart" .Chart ) ) }}
{{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.commonLabels $versionLabel ) "context" . ) }}
labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
app.kubernetes.io/part-of: apisix
app.kubernetes.io/component: dashboard
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "apisix.dashboard.fullname" .) "key" "password" "length" 10 "providedValues" (list "dashboard.password") "honorProvidedValues" true "context" $) }}
{{- end }}