Files
auricom-home-cluster/kubernetes/apps/default/jellyseer/app/helmrelease.yaml
feisar-bot 4defaaed66 ⬆️ Update image docker.io/fallenbagel/jellyseerr to 1.6.0
| datasource | package                          | from  | to    |
| ---------- | -------------------------------- | ----- | ----- |
| docker     | docker.io/fallenbagel/jellyseerr | 1.5.0 | 1.6.0 |
2023-08-07 20:20:25 +02:00

77 lines
1.7 KiB
YAML

---
# yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helm.toolkit.fluxcd.io/helmrelease_v2beta1.json
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: &app jellyseer
namespace: default
spec:
interval: 15m
chart:
spec:
chart: app-template
version: 1.5.1
sourceRef:
kind: HelmRepository
name: bjw-s
namespace: flux-system
maxHistory: 3
install:
createNamespace: true
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
retries: 3
uninstall:
keepHistory: false
values:
image:
repository: docker.io/fallenbagel/jellyseerr
tag: 1.6.0
env:
TZ: "${TIMEZONE}"
LOG_LEVEL: "info"
PORT: &port 8080
service:
main:
ports:
http:
port: *port
ingress:
main:
enabled: true
ingressClassName: "nginx"
annotations:
hajimari.io/icon: mdi:eye-circle
hosts:
- host: &host "{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}"
paths:
- path: /
pathType: Prefix
- host: &host2 "requests.${SECRET_CLUSTER_DOMAIN}"
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
- *host2
podSecurityContext:
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
fsGroupChangePolicy: "OnRootMismatch"
persistence:
config:
enabled: true
existingClaim: jellyseer-config
mountPath: /app/config
resources:
requests:
cpu: 10m
memory: 250Mi
limits:
memory: 500Mi