forked from billimek/k8s-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadarr.yaml
62 lines (62 loc) · 1.33 KB
/
readarr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: readarr
namespace: default
spec:
interval: 5m
chart:
spec:
# renovate: registryUrl=https://k8s-at-home.com/charts/
chart: readarr
version: 6.4.2
sourceRef:
kind: HelmRepository
name: k8s-at-home-charts
namespace: flux-system
interval: 5m
values:
image:
repository: ghcr.io/k8s-at-home/readarr
tag: v0.1.1.1352
env:
TZ: "America/New_York"
# PUID: 1001
# PGID: 1001
ingress:
main:
enabled: true
annotations:
kubernetes.io/ingress.class: "nginx"
hosts:
- host: readarr.eviljungle.com
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- "readarr.eviljungle.com"
podAnnotations:
backup.velero.io/backup-volumes: config
persistence:
config:
enabled: true
storageClass: "rook-ceph-block"
size: 5Gi
media:
enabled: true
existingClaim: nfs-media-pvc
podSecurityContext:
runAsUser: 1001
runAsGroup: 1001
fsGroup: 1001
resources:
requests:
memory: 750Mi
cpu: 25m
limits:
memory: 2000Mi
tolerations:
- key: "arm"
operator: "Exists"