File tree 2 files changed +115
-0
lines changed
kubernetes/apps/production/arr/jellyseerr
2 files changed +115
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : helm.toolkit.fluxcd.io/v2
2
+ kind : HelmRelease
3
+ metadata :
4
+ name : &app jellyseerr
5
+ namespace : arr
6
+ spec :
7
+ interval : 15m
8
+ chart :
9
+ spec :
10
+ chart : app-template
11
+ version : 3.7.1
12
+ interval : 30m
13
+ sourceRef :
14
+ kind : HelmRepository
15
+ name : bjw-s
16
+ namespace : flux-system
17
+
18
+ install :
19
+ remediation :
20
+ retries : 3
21
+ upgrade :
22
+ remediation :
23
+ retries : 3
24
+
25
+ values :
26
+ global :
27
+ fullnameOverride : *app
28
+ namespace : arr
29
+
30
+ controllers :
31
+ jellyseerr :
32
+ enabled : true
33
+ type : statefulset
34
+ annotations :
35
+ reloader.stakater.com/auto : " true"
36
+
37
+ replicas : 1
38
+
39
+ statefulset :
40
+ volumeClaimTemplates :
41
+ - name : jellyseerr-config
42
+ accessMode : ReadWriteOnce
43
+ size : 3Gi
44
+ storageClass : longhorn
45
+ globalMounts :
46
+ - path : /config
47
+
48
+ pod :
49
+ securityContext :
50
+ runAsUser : 1000
51
+ runAsGroup : &group 1000
52
+ fsGroup : *group
53
+ fsGroupChangePolicy : " OnRootMismatch"
54
+ dnsPolicy : None
55
+ dnsConfig :
56
+ nameservers :
57
+ - 10.43.0.10
58
+ - 1.1.1.1
59
+ - 8.8.8.8
60
+
61
+ containers :
62
+ app :
63
+ image :
64
+ repository : fallenbagel/jellyseerr
65
+ tag : 2.3.0
66
+ pullPolicy : IfNotPresent
67
+ env :
68
+ TZ : " ${TZ}"
69
+ LOG_LEVEL : info
70
+
71
+ probes :
72
+ liveness :
73
+ enabled : false
74
+
75
+ securityContext :
76
+ allowPrivilegeEscalation : false
77
+ capabilities :
78
+ drop :
79
+ - ALL
80
+
81
+ resources :
82
+ requests :
83
+ cpu : 50m
84
+ memory : 150Mi
85
+ limits :
86
+ memory : 512Mi
87
+
88
+ service :
89
+ app :
90
+ primary : true
91
+ controller : jellyseerr
92
+ ports :
93
+ http :
94
+ port : 5055
95
+
96
+ ingress :
97
+ internal :
98
+ enabled : true
99
+ className : nginx
100
+ hosts :
101
+ - host : " request.${LOCAL_DOMAIN}"
102
+ paths :
103
+ - path : /
104
+ pathType : Prefix
105
+ service :
106
+ identifier : app
107
+ port : http
108
+ tls :
109
+ - hosts :
110
+ - " request.${LOCAL_DOMAIN}"
111
+ secretName : local-mafyuh-dev-production-tls
Original file line number Diff line number Diff line change
1
+ apiVersion : kustomize.config.k8s.io/v1beta1
2
+ kind : Kustomization
3
+ resources :
4
+ - helmrelease.yaml
You can’t perform that action at this time.
0 commit comments