|
| 1 | +apiVersion: "acid.zalan.do/v1" |
| 2 | +kind: OperatorConfiguration |
| 3 | +metadata: |
| 4 | + name: {{ template "postgres-operator.fullname" . }} |
| 5 | + labels: |
| 6 | + app.kubernetes.io/name: {{ template "postgres-operator.name" . }} |
| 7 | + helm.sh/chart: {{ template "postgres-operator.chart" . }} |
| 8 | + app.kubernetes.io/managed-by: {{ .Release.Service }} |
| 9 | + app.kubernetes.io/instance: {{ .Release.Name }} |
| 10 | +configuration: |
| 11 | + docker_image: {{ .Values.docker_image }} |
| 12 | + repair_period: {{ .Values.repair_period }} |
| 13 | + resync_period: {{ .Values.resync_period }} |
| 14 | + workers: {{ .Values.workers }} |
| 15 | +{{ toYaml .Values.configCRD | indent 2 }} |
| 16 | + users: |
| 17 | +{{ toYaml .Values.configUsers | indent 4 }} |
| 18 | + kubernetes: |
| 19 | + oauth_token_secret_name: {{ template "postgres-operator.fullname" . }} |
| 20 | + pod_service_account_name: operator |
| 21 | + spilo_privileged: {{ .Values.spilo_privileged }} |
| 22 | +{{ toYaml .Values.configKubernetes | indent 4 }} |
| 23 | +{{ toYaml .Values.configKubernetesCRD | indent 4 }} |
| 24 | + postgres_pod_resources: |
| 25 | +{{ toYaml .Values.configPostgresPodResources | indent 4 }} |
| 26 | + timeouts: |
| 27 | +{{ toYaml .Values.configTimeouts | indent 4 }} |
| 28 | + load_balancer: |
| 29 | +{{ toYaml .Values.configLoadBalancerCRD | indent 4 }} |
| 30 | + aws_or_gcp: |
| 31 | +{{ toYaml .Values.configAwsOrGcp | indent 4 }} |
| 32 | + logical_backup: |
| 33 | +{{ toYaml .Values.configLogicalBackup | indent 4 }} |
| 34 | + debug: |
| 35 | +{{ toYaml .Values.configDebug | indent 4 }} |
| 36 | + teams_api: |
| 37 | +{{ toYaml .Values.configTeamsApiCRD | indent 4 }} |
| 38 | + logging_rest_api: |
| 39 | +{{ toYaml .Values.configLoggingRestApi | indent 4 }} |
| 40 | + scalyr: |
| 41 | +{{ toYaml .Values.configScalyr | indent 4 }} |
0 commit comments