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 19
19
labels :
20
20
app.kubernetes.io/name : {{ template "postgres-operator-ui.name" . }}
21
21
app.kubernetes.io/instance : {{ .Release.Name }}
22
+ {{- with .Values.podAnnotations }}
23
+ annotations :
24
+ {{- toYaml . | nindent 8 }}
25
+ {{- end }}
22
26
spec :
23
27
serviceAccountName : {{ include "postgres-operator-ui.serviceAccountName" . }}
24
28
{{- if .Values.imagePullSecrets }}
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ metadata:
6
6
helm.sh/chart : {{ template "postgres-operator-ui.chart" . }}
7
7
app.kubernetes.io/managed-by : {{ .Release.Service }}
8
8
app.kubernetes.io/instance : {{ .Release.Name }}
9
+ {{- with .Values.service.annotations }}
10
+ annotations :
11
+ {{- toYaml . | nindent 4 }}
12
+ {{- end }}
9
13
name : {{ template "postgres-operator-ui.fullname" . }}
10
14
namespace : {{ .Release.Namespace }}
11
15
spec :
Original file line number Diff line number Diff line change 48
48
teams :
49
49
- " acid"
50
50
51
+ # Extra pod annotations
52
+ podAnnotations :
53
+ {}
54
+
51
55
# configure extra UI ENVs
52
56
# Extra ENVs are writen in kubenertes format and added "as is" to the pod's env variables
53
57
# https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/
@@ -85,6 +89,8 @@ service:
85
89
# If the type of the service is NodePort a port can be specified using the nodePort field
86
90
# If the nodePort field is not specified, or if it has no value, then a random port is used
87
91
# nodePort: 32521
92
+ annotations :
93
+ {}
88
94
89
95
# configure UI ingress. If needed: "enabled: true"
90
96
ingress :
You can’t perform that action at this time.
0 commit comments