theshire/kubernetes/apps/default/prowlarr/app/helmrelease.yaml

107 lines
3 KiB
YAML
Raw Normal View History

2024-01-27 15:26:38 -06:00
---
2024-03-19 17:38:08 -05:00
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
apiVersion: helm.toolkit.fluxcd.io/v2
2024-01-27 15:26:38 -06:00
kind: HelmRelease
metadata:
name: prowlarr
spec:
interval: 30m
chart:
spec:
chart: app-template
version: 3.2.1
2024-01-27 15:26:38 -06:00
sourceRef:
kind: HelmRepository
name: bjw-s
namespace: flux-system
install:
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
retries: 3
strategy: rollback
2024-01-27 15:26:38 -06:00
values:
controllers:
2024-03-19 17:38:08 -05:00
prowlarr:
2024-01-27 15:26:38 -06:00
annotations:
reloader.stakater.com/auto: "true"
containers:
2024-03-19 17:38:08 -05:00
app:
2024-01-27 15:26:38 -06:00
image:
repository: ghcr.io/onedr0p/prowlarr-develop
tag: 1.20.0.4590@sha256:ff536a040340ad7382f31bcb1a1a91ced08da25d4138db63dd4b77cc3748ce92
2024-01-27 15:26:38 -06:00
env:
# Ref: https://github.com/Radarr/Radarr/issues/7030#issuecomment-1039689518
# Ref: https://github.com/dotnet/runtime/issues/9336
2024-06-23 08:33:17 -05:00
PROWLARR__APP__INSTANCENAME: Prowlarr
PROWLARR__APP__THEME: dark
PROWLARR__AUTH__METHOD: External
PROWLARR__AUTH__REQUIRED: DisabledForLocalAddresses
PROWLARR__LOG__DBENABLED: "False"
PROWLARR__LOG__LEVEL: info
PROWLARR__SERVER__PORT: &port 80
PROWLARR__UPDATE__BRANCH: develop
2024-01-27 15:26:38 -06:00
TZ: America/Chicago
envFrom:
- secretRef:
name: prowlarr-secret
probes:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /ping
port: *port
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
startup:
enabled: false
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities: { drop: ["ALL"] }
resources:
requests:
cpu: 10m
limits:
memory: 1Gi
pod:
securityContext:
runAsUser: 568
runAsGroup: 568
runAsNonRoot: true
fsGroup: 568
fsGroupChangePolicy: OnRootMismatch
service:
2024-03-19 17:38:08 -05:00
app:
controller: prowlarr
2024-01-27 15:26:38 -06:00
ports:
http:
port: *port
ingress:
2024-03-19 17:38:08 -05:00
app:
2024-01-27 15:26:38 -06:00
enabled: true
2024-01-27 19:12:50 -06:00
className: internal-nginx
2024-01-27 15:26:38 -06:00
hosts:
- host: &host "{{ .Release.Name }}.jahanson.tech"
paths:
- path: /
service:
2024-03-19 17:38:08 -05:00
identifier: app
2024-01-27 15:26:38 -06:00
port: http
tls:
- hosts:
- *host
persistence:
config:
enabled: true
type: emptyDir
tmp:
type: emptyDir