add wallabag

This commit is contained in:
auricom
2021-03-22 23:59:07 +01:00
parent 755126d6b3
commit 465f36901f
3 changed files with 106 additions and 0 deletions

View File

@@ -246,3 +246,16 @@ spec:
resources:
requests:
storage: 600Gi
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: prowlarr-config
namespace: media
spec:
accessModes:
- ReadWriteOnce
storageClassName: longhorn-backups
resources:
requests:
storage: 1Gi

View File

@@ -0,0 +1,58 @@
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: prowlarr
namespace: media
spec:
interval: 5m
chart:
spec:
# renovate: registryUrl=https://k8s-at-home.com/charts/
chart: prowlarr
version: 1.0.1
sourceRef:
kind: HelmRepository
name: k8s-at-home-charts
namespace: flux-system
interval: 5m
values:
controllerType: deployment
image:
repository: ghcr.io/k8s-at-home/prowlarr
tag: v0.1.0.183
pullPolicy: IfNotPresent
env:
TZ: "Europe/Paris"
podSecurityContext:
runAsUser: 568
runAsGroup: 568
fsGroup: 568
persistence:
config:
enabled: true
existingClaim: prowlarr-config
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: "nginx"
nginx.ingress.kubernetes.io/auth-url: "http://authelia.auth.svc.cluster.local/api/verify"
nginx.ingress.kubernetes.io/auth-signin: "https://login.k3s.xpander.ovh/"
hosts:
- host: prowlarr.k3s.xpander.ovh
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- "prowlarr.k3s.xpander.ovh"
resources:
requests:
memory: 100Mi
cpu: 100m
limits:
memory: 1000Mi
service:
annotations:
prometheus.io/probe: "true"
prometheus.io/protocol: http

File diff suppressed because one or more lines are too long