chore: update app-template chart for radarr

This commit is contained in:
SeanOMik 2024-10-13 18:28:28 -04:00
parent 6bf0b594c0
commit adc21e7861
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
1 changed files with 73 additions and 84 deletions

View File

@ -1,3 +1,4 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
apiVersion: helm.toolkit.fluxcd.io/v2 apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease kind: HelmRelease
metadata: metadata:
@ -8,26 +9,47 @@ spec:
chart: chart:
spec: spec:
chart: app-template chart: app-template
version: 1.3.x version: 3.4.0
sourceRef: sourceRef:
kind: HelmRepository kind: HelmRepository
name: bjws-charts name: bjws-charts
namespace: flux-system namespace: flux-system
values: values:
controllers:
main:
pod:
securityContext:
runAsNonRoot: true
runAsUser: 10000
runAsGroup: 10000
fsGroup: 10000
fsGroupChangePolicy: OnRootMismatch
containers:
radarr:
image: image:
repository: ghcr.io/onedr0p/radarr-develop repository: ghcr.io/onedr0p/radarr-develop
tag: "5.12.0.9255" tag: 5.12.0.9255
env:
TZ: America/New_York
resources:
requests:
cpu: 1m
memory: 350Mi
limits:
memory: 1500Mi
# Metrics sidecar
sidecars:
exportarr: exportarr:
image: ghcr.io/onedr0p/exportarr:v2.0.1 image:
repository: ghcr.io/onedr0p/exportarr
tag: v2.0.1
args: args:
- radarr - radarr
ports:
- name: metrics
containerPort: 9000
env: env:
- name: URL - name: URL
value: "http://localhost" value: "http://localhost"
@ -39,81 +61,48 @@ spec:
value: "true" value: "true"
- name: ENABLE_UNKNOWN_QUEUE_ITEMS - name: ENABLE_UNKNOWN_QUEUE_ITEMS
value: "true" value: "true"
volumeMounts:
- name: config
mountPath: /config
readOnly: true
env:
TZ: America/New_York
service:
main:
labels:
app: radarr-service
ports:
http:
port: 7878
metrics:
enabled: true
port: 9000
protocol: HTTP
probes:
liveness:
enabled: false
# custom: true
# spec:
# httpGet:
# path: /ping
# port: 7878
# initialDelaySeconds: 10
# periodSeconds: 10
# timeoutSeconds: 3
# failureThreshold: 3
startup:
enabled: false
ingress: ingress:
main: main:
enabled: true
annotations: annotations:
cert-manager.io/cluster-issuer: letsencrypt-production cert-manager.io/cluster-issuer: letsencrypt-production
traefik.ingress.kubernetes.io/router.entrypoints: websecure traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd
hosts: hosts:
- host: &host "radarr.${SECRET_NEW_DOMAIN}" - host: "radarr.${SECRET_NEW_DOMAIN}"
paths: paths:
- path: / - path: /
pathType: Prefix service:
tls: identifier: radarr
- hosts: port: http
- *host
service:
app:
controller: main
ports:
http:
port: 7878
metrics:
port: 9000
protocol: HTTP
persistence: persistence:
config: config:
enabled: true
type: hostPath type: hostPath
hostPath: /mnt/MainPool/Kubernetes/radarr hostPath: /mnt/MainPool/Kubernetes/radarr
mountPath: /config advancedMounts:
main: # controller name
radarr: # container name
- path: /config
exportarr:
- path: /config
readOnly: true
storage: storage:
enabled: true
type: hostPath type: hostPath
hostPath: /mnt/MainPool/Media hostPath: /mnt/MainPool/Media
mountPath: /storage advancedMounts:
main: # controller name
podSecurityContext: radarr: # container name
runAsNonRoot: true - path: /storage
runAsUser: 10000
runAsGroup: 10000
fsGroup: 10000
fsGroupChangePolicy: OnRootMismatch
resources:
requests:
cpu: 1m
memory: 350Mi
limits:
memory: 1500Mi