File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ sources:
1515type : application
1616# This is the chart version. This version number should be incremented each time you make changes
1717# to the chart and its templates, including the app version.
18- version : 0.2 .0
18+ version : 0.3 .0
1919# This is the version number of the application being deployed. This version number should be
2020# incremented each time you make changes to the application.
2121appVersion : v2.18.0
Original file line number Diff line number Diff line change @@ -71,13 +71,16 @@ spec:
7171 imagePullPolicy : {{ .Values.image.pullPolicy }}
7272 command :
7373 - /manager
74- {{- if not .Values.globalMode.enabled }}
7574 env :
75+ {{- if not .Values.globalMode.enabled }}
7676 - name : WATCH_NAMESPACE
7777 valueFrom :
7878 fieldRef :
7979 fieldPath : metadata.namespace
8080 {{- end }}
81+ {{- with .Values.extraEnv }}
82+ {{- toYaml . | nindent 8 }}
83+ {{- end}}
8184 ports :
8285 - containerPort : 8080
8386 name : metrics
8891 mountPath : /var/log/fdb
8992 - name : fdb-binaries
9093 mountPath : /usr/bin/fdb
94+ {{- with .Values.volumeMounts }}
95+ {{- toYaml . | nindent 8 }}
96+ {{- end }}
9197 securityContext :
9298 {{- toYaml .Values.containerSecurityContext | nindent 10 }}
9399 livenessProbe :
@@ -115,3 +121,6 @@ spec:
115121 emptyDir : {}
116122 - name : fdb-binaries
117123 emptyDir : {}
124+ {{- with .Values.volumes }}
125+ {{- toYaml . | nindent 6 }}
126+ {{- end }}
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ containerSecurityContext:
4646nodeSelector : {}
4747affinity : {}
4848tolerations : {}
49+ extraEnv : []
50+ volumes : []
51+ volumeMounts : []
4952resources :
5053 limits :
5154 cpu : 500m
You can’t perform that action at this time.
0 commit comments