feat: add selfoss
This commit is contained in:
parent
2d507c03ef
commit
d0c82e7a86
|
@ -10,4 +10,5 @@ resources:
|
|||
- ./audiobookshelf
|
||||
#- ./plex
|
||||
- ./tautulli
|
||||
- ./ombi
|
||||
- ./ombi
|
||||
- ./selfoss
|
|
@ -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
|
|
@ -0,0 +1,4 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
resources:
|
||||
- ./helm-release.yaml
|
Loading…
Reference in New Issue