summaryrefslogtreecommitdiff
path: root/playbooks.d/k3s-master/manifests/applications/edephas.tyil.net/public-services/invidious/release.yaml
blob: 36642029c606398b725faebcc86da73ed54aca1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
  name: invidious
  namespace: public-services
spec:
  interval: 5m
  chart:
    spec:
      chart: .
      version: 2.0.2
      sourceRef:
        kind: GitRepository
        name: tyil-helm-invidious
        namespace: flux-system
      interval: 1m
  valuesFrom:
  - name: invidious-config
    kind: Secret
  values:
    replicaCount: 1
    ingress:
      enabled: true
      className: nginx
      hosts:
      - host: youtube.alt.tyil.nl
        paths:
        - path: /
    config:
      channel_threads: 1
      db:
        user: invidious
        host: 10.57.100.7
        port: 5432
        dbname: invidious
      domain: youtube.alt.tyil.nl
      feed_threads: 1
      full_refresh: false
      https_only: true
...