File tree 4 files changed +8
-1
lines changed
4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.2 .0
18
+ version : 0.3 .0
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 39
39
- name : {{ .Chart.Name }}-coordinator
40
40
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
41
41
imagePullPolicy : {{ .Values.image.pullPolicy }}
42
+ env :
43
+ {{- toYaml .Values.env | nindent 12 }}
42
44
volumeMounts :
43
45
- mountPath : {{ .Values.server.config.path }}
44
46
name : config-volume
Original file line number Diff line number Diff line change 36
36
- name : {{ .Chart.Name }}-worker
37
37
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
38
38
imagePullPolicy : {{ .Values.image.pullPolicy }}
39
+ env :
40
+ {{- toYaml .Values.env | nindent 12 }}
39
41
volumeMounts :
40
42
- mountPath : {{ .Values.server.config.path }}
41
43
name : config-volume
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ additionalLogProperties: {}
44
44
45
45
additionalCatalogs : {}
46
46
47
+ # Array of EnvVar (https://v1-18.docs.kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#envvar-v1-core)
48
+ env : []
49
+
47
50
securityContext :
48
51
runAsUser : 1000
49
52
runAsGroup : 1000
You can’t perform that action at this time.
0 commit comments