File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type: application
6
6
7
7
# This is the chart version. This version number should be incremented each time you make changes
8
8
# to the chart and its templates, including the app version.
9
- version : 1.0.1-pre4
9
+ version : 1.0.1-pre5
10
10
11
11
# This is the version number of the application being deployed. This version number should be
12
12
# incremented each time you make changes to the application.
Original file line number Diff line number Diff line change 31
31
{{- toYaml .Values.securityContext | nindent 12 }}
32
32
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
33
33
imagePullPolicy : {{ .Values.image.pullPolicy }}
34
+ env :
35
+ {{- range $pkey, $pval := .Values.env }}
36
+ - name : {{ $pkey }}
37
+ value : {{ quote $pval }}
38
+ {{- end }}
34
39
ports :
35
40
- name : http
36
41
containerPort : 9000
Original file line number Diff line number Diff line change @@ -69,6 +69,9 @@ tolerations: []
69
69
70
70
affinity : {}
71
71
72
+ # Use this to insert env values into the deployment
73
+ env : []
74
+
72
75
hooks :
73
76
webhook1 :
74
77
enable : true
You can’t perform that action at this time.
0 commit comments