Files
auricom-home-cluster/kubernetes/apps/default/jellyseerr/app/helmrelease.yaml
feisar-bot[bot] 0cfe09244c ⬆️ Update ghcr.io/fallenbagel/jellyseerr ( 2.7.2 → 2.7.3 ) (#7305)
| datasource | package                        | from  | to    |
| ---------- | ------------------------------ | ----- | ----- |
| docker     | ghcr.io/fallenbagel/jellyseerr | 2.7.2 | 2.7.3 |

Co-authored-by: feisar-bot[bot] <98277827+feisar-bot[bot]@users.noreply.github.com>
2025-08-20 01:19:27 +00:00

98 lines
2.6 KiB
YAML

---
# 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
kind: HelmRelease
metadata:
name: &app jellyseerr
spec:
interval: 1h
chartRef:
kind: OCIRepository
name: app-template
install:
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
strategy: rollback
retries: 3
values:
controllers:
jellyseerr:
annotations:
reloader.stakater.com/auto: "true"
containers:
app:
image:
repository: ghcr.io/fallenbagel/jellyseerr
tag: 2.7.3@sha256:9cc9e9ee6cd5cf5a23feb45c37742ba34cfd6314d81d259cddb373a97ac92cdd
env:
TZ: ${TIMEZONE}
LOG_LEVEL: "info"
PORT: &port 8080
# envFrom:
# - secretRef:
# name: jellyseerr-secret
probes:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /api/v1/status
port: *port
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities: { drop: ["ALL"] }
resources:
requests:
cpu: 10m
limits:
memory: 2Gi
defaultPodOptions:
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
fsGroupChangePolicy: OnRootMismatch
service:
app:
controller: *app
ports:
http:
port: *port
route:
app:
hostnames: ["{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}","requests.${SECRET_EXTERNAL_DOMAIN}"]
parentRefs:
- name: internal
namespace: network
sectionName: https
rules:
- backendRefs:
- name: *app
port: *port
persistence:
config:
existingClaim: *app
globalMounts:
- path: /app/config
config-cache:
existingClaim: jellyseerr-cache
globalMounts:
- path: /app/config/cache
config-logs:
type: emptyDir
globalMounts:
- path: /app/config/logs
tmp:
type: emptyDir