2024-01-27 23:57:34 -06:00
|
|
|
---
|
2024-03-19 18:15:20 -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
|
2024-01-27 23:57:34 -06:00
|
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
|
|
|
kind: HelmRelease
|
|
|
|
metadata:
|
|
|
|
name: overseerr
|
|
|
|
spec:
|
|
|
|
interval: 30m
|
|
|
|
chart:
|
|
|
|
spec:
|
|
|
|
chart: app-template
|
2024-03-19 17:20:21 -05:00
|
|
|
version: 3.0.4
|
2024-01-27 23:57:34 -06:00
|
|
|
sourceRef:
|
|
|
|
kind: HelmRepository
|
|
|
|
name: bjw-s
|
|
|
|
namespace: flux-system
|
|
|
|
install:
|
|
|
|
remediation:
|
|
|
|
retries: 3
|
|
|
|
upgrade:
|
|
|
|
cleanupOnFail: true
|
|
|
|
remediation:
|
|
|
|
retries: 3
|
2024-03-19 18:43:34 -05:00
|
|
|
strategy: rollback
|
2024-01-27 23:57:34 -06:00
|
|
|
dependsOn:
|
|
|
|
- name: rook-ceph-cluster
|
|
|
|
namespace: rook-ceph
|
|
|
|
- name: volsync
|
2024-02-15 17:27:29 -06:00
|
|
|
namespace: volsync-system
|
2024-01-27 23:57:34 -06:00
|
|
|
values:
|
|
|
|
controllers:
|
2024-03-19 17:38:08 -05:00
|
|
|
overseerr:
|
2024-01-27 23:57:34 -06:00
|
|
|
annotations:
|
|
|
|
reloader.stakater.com/auto: "true"
|
|
|
|
containers:
|
2024-03-19 17:38:08 -05:00
|
|
|
app:
|
2024-01-27 23:57:34 -06:00
|
|
|
image:
|
|
|
|
repository: ghcr.io/sct/overseerr
|
|
|
|
tag: 1.33.2@sha256:714ea6db2bc007a2262d112bef7eec74972eb33d9c72bddb9cbd98b8742de950
|
|
|
|
env:
|
|
|
|
TZ: America/Chicago
|
|
|
|
LOG_LEVEL: "info"
|
|
|
|
PORT: &port 80
|
|
|
|
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
|
|
|
|
startup:
|
|
|
|
enabled: false
|
|
|
|
securityContext:
|
|
|
|
allowPrivilegeEscalation: false
|
|
|
|
readOnlyRootFilesystem: true
|
|
|
|
capabilities: { drop: ["ALL"] }
|
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
cpu: 10m
|
|
|
|
limits:
|
|
|
|
memory: 2Gi
|
|
|
|
pod:
|
|
|
|
securityContext:
|
|
|
|
runAsUser: 568
|
|
|
|
runAsGroup: 568
|
|
|
|
runAsNonRoot: true
|
|
|
|
fsGroup: 568
|
|
|
|
fsGroupChangePolicy: OnRootMismatch
|
|
|
|
service:
|
2024-03-19 17:38:08 -05:00
|
|
|
app:
|
2024-03-19 18:15:20 -05:00
|
|
|
controller: overseerr
|
2024-01-27 23:57:34 -06:00
|
|
|
ports:
|
|
|
|
http:
|
|
|
|
port: *port
|
|
|
|
ingress:
|
2024-03-19 17:38:08 -05:00
|
|
|
app:
|
2024-01-27 23:57:34 -06:00
|
|
|
enabled: true
|
2024-01-28 00:03:02 -06:00
|
|
|
className: external-nginx
|
2024-01-27 23:57:34 -06:00
|
|
|
annotations:
|
|
|
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
|
|
|
external-dns.alpha.kubernetes.io/target: external.hsn.dev
|
|
|
|
|
|
|
|
hosts:
|
|
|
|
- host: &host overseerr.hsn.dev
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
service:
|
2024-03-19 17:38:08 -05:00
|
|
|
identifier: app
|
2024-01-27 23:57:34 -06:00
|
|
|
port: http
|
|
|
|
tls:
|
|
|
|
- hosts:
|
|
|
|
- *host
|
|
|
|
persistence:
|
|
|
|
config:
|
|
|
|
enabled: true
|
|
|
|
existingClaim: overseerr
|
|
|
|
globalMounts:
|
|
|
|
- path: /app/config
|
|
|
|
tmp:
|
|
|
|
type: emptyDir
|