File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ annotations:
22 category : Infrastructure
33apiVersion : v2
44appVersion : latest
5- version : 0.6.15
5+ version : 0.6.16
66name : localstack
77description : LocalStack - a fully functional local AWS cloud stack
88type : application
Original file line number Diff line number Diff line change @@ -188,6 +188,10 @@ spec:
188188 {{- if .Values.extraEnvVars }}
189189 {{- include "common.tplvalues.render" (dict "value" .Values.extraEnvVars "context" $) | nindent 12 }}
190190 {{- end }}
191+ {{- if .Values.envFrom }}
192+ envFrom :
193+ {{- toYaml .Values.envFrom | nindent 12 }}
194+ {{- end }}
191195 {{- if .Values.mountDind.enabled }}
192196 - name : dind
193197 image : {{ .Values.mountDind.image | quote }}
Original file line number Diff line number Diff line change @@ -97,6 +97,11 @@ mountDind:
9797# # value: "serverless,sqs,es"
9898extraEnvVars : []
9999
100+ # # envFrom Allows you to set additional environment variables from a ConfigMap or Secret
101+ # # - configMapRef:
102+ # # name: configmap-name
103+ envFrom : []
104+
100105livenessProbe :
101106 initialDelaySeconds : 0
102107 periodSeconds : 10
You can’t perform that action at this time.
0 commit comments