File tree 2 files changed +17
-17
lines changed
2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : nextcloud
3
- version : 6.6.8
3
+ version : 6.6.9
4
4
# renovate: image=docker.io/library/nextcloud
5
5
appVersion : 30.0.6
6
6
description : A file sharing server that puts the control and security of your own data back into your hands.
Original file line number Diff line number Diff line change 69
69
{{- end }}
70
70
env :
71
71
{{- include "nextcloud.env" . | nindent 12 }}
72
+ resources :
73
+ {{- toYaml .Values.resources | nindent 12 }}
74
+ {{- with .Values.nextcloud.securityContext }}
75
+ securityContext :
76
+ {{- toYaml . | nindent 12 }}
77
+ {{- end }}
78
+ volumeMounts :
79
+ {{- include "nextcloud.volumeMounts" . | trim | nindent 12 }}
80
+ {{- range $hook, $shell := .Values.nextcloud.hooks }}
81
+ {{- if $shell }}
82
+ - name : nextcloud-hooks
83
+ mountPath : /docker-entrypoint-hooks.d/{{ $hook }}/helm.sh
84
+ subPath : {{ $hook }}.sh
85
+ readOnly : true
86
+ {{- end }}
87
+ {{- end }}
72
88
{{- if not .Values.nginx.enabled }}
73
89
ports :
74
90
- name : http
@@ -123,22 +139,6 @@ spec:
123
139
{{- end }}
124
140
{{- end }}
125
141
{{- end }}{{/* end-if not nginx.enabled */}}
126
- resources :
127
- {{- toYaml .Values.resources | nindent 12 }}
128
- {{- with .Values.nextcloud.securityContext }}
129
- securityContext :
130
- {{- toYaml . | nindent 12 }}
131
- {{- end }}
132
- volumeMounts :
133
- {{- include "nextcloud.volumeMounts" . | trim | nindent 12 }}
134
- {{- range $hook, $shell := .Values.nextcloud.hooks }}
135
- {{- if $shell }}
136
- - name : nextcloud-hooks
137
- mountPath : /docker-entrypoint-hooks.d/{{ $hook }}/helm.sh
138
- subPath : {{ $hook }}.sh
139
- readOnly : true
140
- {{- end }}
141
- {{- end }}
142
142
{{- if .Values.nginx.enabled }}
143
143
- name : {{ .Chart.Name }}-nginx
144
144
image : " {{ .Values.nginx.image.repository }}:{{ .Values.nginx.image.tag }}"
You can’t perform that action at this time.
0 commit comments