4848 teams :
4949 - " acid"
5050
51+ # configure extra UI ENVs
52+ # Extra ENVs are writen in kubenertes format and added "as is" to the pod's env variables
53+ # https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/
54+ # https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#environment-variables
55+ # UI specific env variables can be found here: https://github.com/zalando/postgres-operator/blob/master/ui/operator_ui/main.py
56+ extraEnvs :
57+ []
58+ # Exemple of settings to make snapshot view working in the ui when using AWS
59+ # - name: WALE_S3_ENDPOINT
60+ # value: https+path://s3.us-east-1.amazonaws.com:443
61+ # - name: SPILO_S3_BACKUP_PREFIX
62+ # value: spilo/
63+ # - name: AWS_ACCESS_KEY_ID
64+ # valueFrom:
65+ # secretKeyRef:
66+ # name: <postgres operator secret with AWS token>
67+ # key: AWS_ACCESS_KEY_ID
68+ # - name: AWS_SECRET_ACCESS_KEY
69+ # valueFrom:
70+ # secretKeyRef:
71+ # name: <postgres operator secret with AWS token>
72+ # key: AWS_SECRET_ACCESS_KEY
73+ # - name: AWS_DEFAULT_REGION
74+ # valueFrom:
75+ # secretKeyRef:
76+ # name: <postgres operator secret with AWS token>
77+ # key: AWS_DEFAULT_REGION
78+ # - name: SPILO_S3_BACKUP_BUCKET
79+ # value: <s3 bucket used by the operator>
80+
5181# configure UI service
5282service :
5383 type : " ClusterIP"
@@ -59,7 +89,8 @@ service:
5989# configure UI ingress. If needed: "enabled: true"
6090ingress :
6191 enabled : false
62- annotations : {}
92+ annotations :
93+ {}
6394 # kubernetes.io/ingress.class: nginx
6495 # kubernetes.io/tls-acme: "true"
6596 hosts :
0 commit comments