mirror of
https://github.com/bitnami/charts.git
synced 2026-03-06 15:10:15 +08:00
* Drop Helm 2 support and update mariadb major * Add missing info * Migrate mariadb values * Remove requirements.lock * Format/Fix linter issues in yaml * [bitnami/phpbb] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: fdepaz <fdepaz@bitnami.com> Co-authored-by: Carlos Rodriguez Hernandez <crhernandez@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
21 lines
689 B
YAML
21 lines
689 B
YAML
{{- if .Values.ingress.enabled }}
|
|
{{- range .Values.ingress.secrets }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ .name }}
|
|
labels: {{- include "common.labels.standard" $ | nindent 4 }}
|
|
app.kubernetes.io/component: phpbb
|
|
{{- if $.Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" $.Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if $.Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" $.Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
type: kubernetes.io/tls
|
|
data:
|
|
tls.crt: {{ .certificate | b64enc }}
|
|
tls.key: {{ .key | b64enc }}
|
|
{{- end }}
|
|
{{- end }}
|