File tree Expand file tree Collapse file tree 3 files changed +73
-1
lines changed
Expand file tree Collapse file tree 3 files changed +73
-1
lines changed Original file line number Diff line number Diff line change 11apiVersion : v2
22name : nextcloud
3- version : 8.6 .0
3+ version : 8.7 .0
44# renovate: image=docker.io/library/nextcloud
55appVersion : 32.0.2
66description : 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 1+ {{- if .Values.route.enabled }}
2+ apiVersion : {{ .Values.route.apiVersion | default "gateway.networking.k8s.io/v1" }}
3+ kind : {{ .Values.route.kind | default "HTTPRoute" }}
4+ metadata :
5+ name : {{ template "nextcloud.fullname" . }}
6+ namespace : {{ .Release.Namespace }}
7+ labels :
8+ {{- include "nextcloud.labels" ( dict "component" "app" "rootContext" $ ) | nindent 4 }}
9+ {{- with .Values.route.labels }}
10+ {{- toYaml . | nindent 4 }}
11+ {{- end }}
12+ {{- with .Values.route.annotations }}
13+ annotations :
14+ {{- toYaml . | nindent 4 }}
15+ {{- end }}
16+ spec :
17+ {{- with .Values.route.parentRefs }}
18+ parentRefs :
19+ {{- toYaml . | nindent 4 }}
20+ {{- end }}
21+ {{- with .Values.route.hostnames }}
22+ hostnames :
23+ {{- tpl (toYaml .) $ | nindent 4 }}
24+ {{- end }}
25+ rules :
26+ {{- if .Values.route.additionalRules }}
27+ {{- tpl (toYaml .Values.route.additionalRules) $ | nindent 4 }}
28+ {{- end }}
29+ - backendRefs :
30+ - name : {{ template "nextcloud.fullname" . }}
31+ port : {{ .Values.service.port }}
32+ {{- with .Values.route.filters }}
33+ filters :
34+ {{- toYaml . | nindent 8 }}
35+ {{- end }}
36+ {{- with .Values.route.matches }}
37+ matches :
38+ {{- tpl (toYaml .) $ | nindent 8 }}
39+ {{- end }}
40+ {{- end }}
Original file line number Diff line number Diff line change @@ -29,6 +29,38 @@ deploymentLabels: {}
2929# Number of replicas to be deployed
3030replicaCount : 1
3131
32+ route :
33+ # -- enable an HTTPRoute resource for nextcloud .
34+ enabled : false
35+ # -- Set the route apiVersion
36+ apiVersion : gateway.networking.k8s.io/v1
37+ # -- Set the route kind
38+ kind : HTTPRoute
39+
40+ # -- Route annotations
41+ annotations : {}
42+ # -- Route labels
43+ labels : {}
44+
45+ # -- Route hostnames
46+ hostnames : []
47+ # -- Reference to parent gateways
48+ parentRefs : []
49+ # -- Route matches
50+ matches :
51+ - path :
52+ type : PathPrefix
53+ value : " /"
54+ # -- Route filters
55+ filters : []
56+
57+ # -- Additional custom rules that can be added to the route
58+ additionalRules : []
59+ # - type: RequestRedirect
60+ # requestRedirect:
61+ # scheme: https
62+ # statusCode: 301
63+
3264# # Allowing use of ingress controllers
3365# # ref: https://kubernetes.io/docs/concepts/services-networking/ingress/
3466# #
You can’t perform that action at this time.
0 commit comments