feat: add selfoss

This commit is contained in:
SeanOMik 2023-08-29 16:38:23 -04:00
parent 2d507c03ef
commit d0c82e7a86
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
3 changed files with 69 additions and 1 deletions

View File

@ -10,4 +10,5 @@ resources:
- ./audiobookshelf
#- ./plex
- ./tautulli
- ./ombi
- ./ombi
- ./selfoss

View File

@ -0,0 +1,63 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: selfoss
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: rsprta/selfoss
tag: "2.19"
env:
UID: 10000
GID: 10000
UPLOAD_MAX_SIZE: 50M
LOG_TO_STDOUT: true
service:
main:
ports:
http:
port: 8888
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
- host: &host "rss.${SECRET_NEW_DOMAIN}"
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
secretName: wildcard-main-tls
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/selfoss
mountPath: /selfoss/data
resources:
requests:
cpu: 2m
memory: 200Mi
limits:
memory: 300Mi

View File

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