This commit is contained in:
SeanOMik 2023-05-14 16:08:14 -04:00
parent f90fa8c3bd
commit 654779667f
3 changed files with 67 additions and 1 deletions

View File

@ -9,4 +9,5 @@ resources:
- ./jellyseerr - ./jellyseerr
- ./audiobookshelf - ./audiobookshelf
#- ./plex #- ./plex
- ./tautulli - ./tautulli
- ./ombi

View File

@ -0,0 +1,61 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: ombi
namespace: media
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
image:
repository: lscr.io/linuxserver/ombi
tag: latest
env:
TZ: America/New_York
PUID: "1000"
PGID: "1000"
service:
main:
ports:
http:
port: 3579
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
- host: &host "request.${SECRET_NEW_DOMAIN}"
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
secretName: wildcard-main-tls
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/ombi
mountPath: /app/config
# resources:
# requests:
# cpu: 1m
# memory: 140Mi
# limits:
# memory: 300Mi

View File

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./helm-release.yaml