Add postgresql-ha/11.9.4 helm chart

This commit is contained in:
wbsong111
2024-11-13 10:55:46 +09:00
parent e7582af873
commit 84cef6d9bd
62 changed files with 11303 additions and 0 deletions
@@ -0,0 +1,21 @@
{{- /*
Copyright VMware, Inc.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and (not .Values.pgpool.customUsersSecret) .Values.pgpool.customUsers.usernames }}
apiVersion: v1
kind: Secret
metadata:
name: {{ printf "%s-custom-users" (include "postgresql-ha.pgpool" .) }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/component: pgpool
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
usernames: {{ .Values.pgpool.customUsers.usernames | b64enc | quote }}
passwords: {{ .Values.pgpool.customUsers.passwords | b64enc | quote }}
{{- end -}}