File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v2
22name : nextcloud
3- version : 9.0.2
3+ version : 9.0.3
44# renovate: image=docker.io/library/nextcloud
55appVersion : 33.0.0
66description : A file sharing server that puts the control and security of your own data back into your hands.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ nextcloud:
262262 # disables the web based updater as the default nextcloud docker image does not support it
263263 upgrade-disable-web.config.php : true
264264 # -- adjust openmetrics
265- helm-metrics.php : true
265+ helm-metrics.config. php : true
266266 # -- imaginary support config
267267 imaginary.config.php : false
268268
Original file line number Diff line number Diff line change 1+ ---
2+ apiVersion : v1
3+ kind : Namespace
4+ metadata :
5+ name : nextcloud-dev
6+ ---
7+ apiVersion : cert-manager.io/v1
8+ kind : Certificate
9+ metadata :
10+ name : wildcard
11+ namespace : nextcloud-dev
12+ spec :
13+ secretName : wildcard-cert
14+ dnsNames :
15+ - ' *.isa.wrenix.eu'
16+ issuerRef :
17+ group : cert-manager.io
18+ kind : ClusterIssuer
19+ name : acme-dns
20+ usages :
21+ - digital signature
22+ - key encipherment
23+ ---
24+ apiVersion : gateway.networking.k8s.io/v1
25+ kind : Gateway
26+ metadata :
27+ name : nextcloud
28+ namespace : nextcloud-dev
29+ spec :
30+ gatewayClassName : traefik
31+ infrastructure :
32+ annotations : {}
33+ listeners :
34+ - allowedRoutes :
35+ namespaces :
36+ from : Same
37+ hostname : nextcloud.isa.wrenix.eu
38+ name : https
39+ port : 443
40+ protocol : HTTPS
41+ tls :
42+ certificateRefs :
43+ - group : " "
44+ kind : Secret
45+ name : wildcard-cert
46+ # namespace: nextcloud-dev
47+ mode : Terminate
Original file line number Diff line number Diff line change 1+ nextcloud :
2+ host : nextcloud.isa.wrenix.eu
3+
4+ image :
5+ flavor : fpm
6+ nginx :
7+ enabled : true
8+
9+ persistence :
10+ enabled : true
11+ hostPath : /tmp/nc
12+ nextcloudData :
13+ enabled : true
14+ hostPath : /tmp/nc-data
15+
16+ httpRoute :
17+ enabled : true
18+ hostnames :
19+ - " nextcloud.isa.wrenix.eu"
20+ parentRefs :
21+ - name : " nextcloud"
22+ sectionName : " https"
23+ kind : Gateway
24+ rules :
25+ - filters :
26+ - type : RequestHeaderModifier
27+ requestHeaderModifier :
28+ remove :
29+ - Permissions-Policy
30+
You can’t perform that action at this time.
0 commit comments