mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-30 15:37:44 +02:00

| datasource | package | from | to | | ---------- | ------------ | ----- | ----- | | helm | app-template | 1.2.0 | 1.2.1 |
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helmrelease_v2beta1.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app invidious-server
|
|
namespace: default
|
|
spec:
|
|
interval: 15m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 1.2.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
maxHistory: 3
|
|
install:
|
|
createNamespace: true
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
retries: 3
|
|
uninstall:
|
|
keepHistory: false
|
|
values:
|
|
image:
|
|
repository: quay.io/invidious/invidious
|
|
tag: 865704dc7b0dee818b0f7636a085fcf1736635a7
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 3000
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
ingressClassName: "nginx"
|
|
annotations:
|
|
auth.home.arpa/enabled: "true"
|
|
external-dns.home.arpa/enabled: "true"
|
|
hajimari.io/icon: mdi:web
|
|
hosts:
|
|
- host: &host "invidious.${SECRET_CLUSTER_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
type: configMap
|
|
name: *app
|
|
subPath: config.yml
|
|
mountPath: /invidious/config/config.yml
|
|
readOnly: false
|
|
podAnnotations:
|
|
secret.reloader.stakater.com/reload: *app
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 256Mi
|