File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed
Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11apiVersion : v2
22name : nextcloud
3- version : 4.6.8
3+ version : 4.6.9
44appVersion : 29.0.0
55description : A file sharing server that puts the control and security of your own data back into your hands.
66keywords :
Original file line number Diff line number Diff line change @@ -147,6 +147,7 @@ The following table lists the configurable parameters of the nextcloud chart and
147147| ` nginx.config.custom ` | Specify a custom config for nginx | ` {} ` |
148148| ` nginx.resources ` | nginx resources | ` {} ` |
149149| ` nginx.securityContext ` | Optional security context for the nginx container | ` nil ` |
150+ | ` nginx.extraEnv ` | Optional environment variables for the nginx container | ` nil ` |
150151| ` lifecycle.postStartCommand ` | Specify deployment lifecycle hook postStartCommand | ` nil ` |
151152| ` lifecycle.preStopCommand ` | Specify deployment lifecycle hook preStopCommand | ` nil ` |
152153| ` redis.enabled ` | Whether to install/use redis for locking | ` false ` |
Original file line number Diff line number Diff line change @@ -149,6 +149,10 @@ spec:
149149 - name : {{ .Chart.Name }}-nginx
150150 image : " {{ .Values.nginx.image.repository }}:{{ .Values.nginx.image.tag }}"
151151 imagePullPolicy : {{ .Values.nginx.image.pullPolicy }}
152+ {{- with .Values.nginx.extraEnv }}
153+ env :
154+ {{- toYaml . | nindent 12 }}
155+ {{- end }}
152156 ports :
153157 - name : http
154158 protocol : TCP
Original file line number Diff line number Diff line change @@ -245,6 +245,11 @@ nginx:
245245 # runAsNonRoot: true
246246 # readOnlyRootFilesystem: true
247247
248+ # # Extra environment variables
249+ extraEnv : []
250+ # - name: SOME_ENV
251+ # value: ENV_VALUE
252+
248253internalDatabase :
249254 enabled : true
250255 name : nextcloud
You can’t perform that action at this time.
0 commit comments