2021-01-17 01:09:41 +00:00
|
|
|
{{- if eq .Values.configTarget "OperatorConfigurationCRD" }}
|
|
|
|
apiVersion: "acid.zalan.do/v1"
|
|
|
|
kind: OperatorConfiguration
|
|
|
|
metadata:
|
|
|
|
name: {{ template "postgres-operator.fullname" . }}
|
2021-11-14 22:17:20 +00:00
|
|
|
namespace: {{ .Release.Namespace }}
|
2021-01-17 01:09:41 +00:00
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: {{ template "postgres-operator.name" . }}
|
|
|
|
helm.sh/chart: {{ template "postgres-operator.chart" . }}
|
|
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|
|
configuration:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{ tpl (toYaml .Values.configGeneral) . | indent 2 }}
|
2021-01-17 01:09:41 +00:00
|
|
|
users:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{ tpl (toYaml .Values.configUsers) . | indent 4 }}
|
2021-04-13 08:02:12 +00:00
|
|
|
major_version_upgrade:
|
|
|
|
{{ toYaml .Values.configMajorVersionUpgrade | indent 4 }}
|
2021-01-17 01:09:41 +00:00
|
|
|
kubernetes:
|
2024-05-05 15:45:29 +00:00
|
|
|
{{- if .Values.podPriorityClassName.name }}
|
|
|
|
pod_priority_class_name: {{ .Values.podPriorityClassName.name }}
|
2021-01-17 01:09:41 +00:00
|
|
|
{{- end }}
|
|
|
|
pod_service_account_name: {{ include "postgres-pod.serviceAccountName" . }}
|
|
|
|
oauth_token_secret_name: {{ template "postgres-operator.fullname" . }}
|
2023-04-08 19:26:41 +00:00
|
|
|
{{ tpl (toYaml .Values.configKubernetes) . | indent 4 }}
|
2021-01-17 01:09:41 +00:00
|
|
|
postgres_pod_resources:
|
|
|
|
{{ toYaml .Values.configPostgresPodResources | indent 4 }}
|
|
|
|
timeouts:
|
|
|
|
{{ toYaml .Values.configTimeouts | indent 4 }}
|
|
|
|
load_balancer:
|
|
|
|
{{ toYaml .Values.configLoadBalancer | indent 4 }}
|
|
|
|
aws_or_gcp:
|
|
|
|
{{ toYaml .Values.configAwsOrGcp | indent 4 }}
|
|
|
|
logical_backup:
|
|
|
|
{{ toYaml .Values.configLogicalBackup | indent 4 }}
|
|
|
|
debug:
|
|
|
|
{{ toYaml .Values.configDebug | indent 4 }}
|
|
|
|
teams_api:
|
2023-04-08 19:26:41 +00:00
|
|
|
{{ tpl (toYaml .Values.configTeamsApi) . | indent 4 }}
|
2021-01-17 01:09:41 +00:00
|
|
|
logging_rest_api:
|
|
|
|
{{ toYaml .Values.configLoggingRestApi | indent 4 }}
|
|
|
|
connection_pooler:
|
|
|
|
{{ toYaml .Values.configConnectionPooler | indent 4 }}
|
2023-06-10 03:21:30 +00:00
|
|
|
patroni:
|
|
|
|
{{ toYaml .Values.configPatroni | indent 4 }}
|
2021-01-17 01:09:41 +00:00
|
|
|
{{- end }}
|