File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
charts/postgres-operator-ui Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1919 labels :
2020 app.kubernetes.io/name : {{ template "postgres-operator-ui.name" . }}
2121 app.kubernetes.io/instance : {{ .Release.Name }}
22+ {{- with .Values.podAnnotations }}
23+ annotations :
24+ {{- toYaml . | nindent 8 }}
25+ {{- end }}
2226 spec :
2327 serviceAccountName : {{ include "postgres-operator-ui.serviceAccountName" . }}
2428 {{- if .Values.imagePullSecrets }}
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ metadata:
66 helm.sh/chart : {{ template "postgres-operator-ui.chart" . }}
77 app.kubernetes.io/managed-by : {{ .Release.Service }}
88 app.kubernetes.io/instance : {{ .Release.Name }}
9+ {{- with .Values.service.annotations }}
10+ annotations :
11+ {{- toYaml . | nindent 4 }}
12+ {{- end }}
913 name : {{ template "postgres-operator-ui.fullname" . }}
1014 namespace : {{ .Release.Namespace }}
1115spec :
Original file line number Diff line number Diff line change 4848 teams :
4949 - " acid"
5050
51+ # Extra pod annotations
52+ podAnnotations :
53+ {}
54+
5155# configure extra UI ENVs
5256# Extra ENVs are writen in kubenertes format and added "as is" to the pod's env variables
5357# https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/
@@ -85,6 +89,8 @@ service:
8589 # If the type of the service is NodePort a port can be specified using the nodePort field
8690 # If the nodePort field is not specified, or if it has no value, then a random port is used
8791 # nodePort: 32521
92+ annotations :
93+ {}
8894
8995# configure UI ingress. If needed: "enabled: true"
9096ingress :
You can’t perform that action at this time.
0 commit comments