9 Commits

Author SHA1 Message Date
8103a9520d Update Helm release gitea to v12
All checks were successful
lint-and-test-charts / lint-test (pull_request) Successful in 32s
2025-05-17 02:01:01 +00:00
9996060f5d change ignore 2025-05-16 20:59:21 -05:00
97173473d4 change labels 2025-05-16 20:57:53 -05:00
fbc5c5d22d update app-template chart 2025-05-16 20:52:53 -05:00
864fd94fe6 remove probe 2025-05-16 20:50:57 -05:00
cfeb95745c remove probe 2025-05-16 20:47:32 -05:00
73f9269f60 remove probe 2025-05-16 20:43:48 -05:00
5717303106 remove probe 2025-05-16 20:41:17 -05:00
3cf488fde6 remove probe 2025-05-16 20:35:41 -05:00
59 changed files with 100 additions and 320 deletions

View File

@@ -24,7 +24,7 @@ dependencies:
- name: app-template
alias: sonarr-4k
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: postgres-cluster
alias: postgres-17-cluster
version: 5.1.0

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-4k-config-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k-config-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -63,11 +60,8 @@ metadata:
name: sonarr-4k-postgresql-17-cluster-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k-postgresql-17-cluster-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: database
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-sonarr-4k
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-sonarr-4k
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-4k-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
volumeName: sonarr-4k-nfs-storage
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-4k-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
persistentVolumeReclaimPolicy: Retain
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-4k
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: metrics
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
groups:
- name: sonarr-4k

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-4k-config-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k-config-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: sonarr-4k-config
trigger:

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-4k
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-4k
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: metrics
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
selector:
matchLabels:

View File

@@ -22,23 +22,6 @@ sonarr-4k:
value: 1000
- name: PGID
value: 1000
probes:
liveness:
enabled: false
custom: true
spec:
exec:
command:
- /usr/bin/env
- bash
- -c
- curl --fail localhost:8989/api/v1/system/status?apiKey=`IFS=\> && while
read -d \< E C; do if [[ $E = "ApiKey" ]]; then echo $C; fi; done < /config/config.xml`
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
resources:
requests:
cpu: 10m
@@ -62,10 +45,8 @@ sonarr-4k:
value: false
resources:
requests:
cpu: 100m
cpu: 10m
memory: 256Mi
serviceAccount:
create: true
service:
main:
controller: main
@@ -80,6 +61,7 @@ sonarr-4k:
protocol: TCP
persistence:
config:
forceRename: sonarr-4k-config
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 20Gi

View File

@@ -23,7 +23,7 @@ dependencies:
- name: app-template
alias: sonarr-anime
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: postgres-cluster
alias: postgres-17-cluster
version: 5.1.0

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-anime-config-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime-config-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -63,11 +60,8 @@ metadata:
name: sonarr-anime-postgresql-17-cluster-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime-postgresql-17-cluster-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: database
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-sonarr-anime
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-sonarr-anime
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-anime-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
volumeName: sonarr-anime-nfs-storage
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-anime-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
persistentVolumeReclaimPolicy: Retain
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-anime
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: metrics
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
groups:
- name: sonarr-anime

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-anime-config-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime-config-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: sonarr-anime-config
trigger:

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-anime
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-anime
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: metrics
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
selector:
matchLabels:

View File

@@ -22,23 +22,6 @@ sonarr-anime:
value: 1000
- name: PGID
value: 1000
probes:
liveness:
enabled: false
custom: true
spec:
exec:
command:
- /usr/bin/env
- bash
- -c
- curl --fail localhost:8989/api/v1/system/status?apiKey=`IFS=\> && while
read -d \< E C; do if [[ $E = "ApiKey" ]]; then echo $C; fi; done < /config/config.xml`
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
resources:
requests:
cpu: 10m
@@ -62,10 +45,8 @@ sonarr-anime:
value: false
resources:
requests:
cpu: 100m
cpu: 10m
memory: 256Mi
serviceAccount:
create: true
service:
main:
controller: main
@@ -80,6 +61,7 @@ sonarr-anime:
protocol: TCP
persistence:
config:
forceRename: sonarr-anime-config
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 20Gi

View File

@@ -23,7 +23,7 @@ dependencies:
- name: app-template
alias: sonarr
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: postgres-cluster
alias: postgres-17-cluster
version: 5.1.0

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-config-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-config-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -63,11 +60,8 @@ metadata:
name: sonarr-postgresql-17-cluster-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-postgresql-17-cluster-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: database
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-sonarr
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-sonarr
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
volumeName: sonarr-nfs-storage
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
persistentVolumeReclaimPolicy: Retain
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: metrics
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
groups:
- name: sonarr

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr-config-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr-config-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: sonarr-config
trigger:

View File

@@ -4,11 +4,8 @@ metadata:
name: sonarr
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: sonarr
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: metrics
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
selector:
matchLabels:

View File

@@ -22,23 +22,6 @@ sonarr:
value: 1000
- name: PGID
value: 1000
probes:
liveness:
enabled: false
custom: true
spec:
exec:
command:
- /usr/bin/env
- bash
- -c
- curl --fail localhost:8989/api/v1/system/status?apiKey=`IFS=\> && while
read -d \< E C; do if [[ $E = "ApiKey" ]]; then echo $C; fi; done < /config/config.xml`
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 10
resources:
requests:
cpu: 100m
@@ -62,10 +45,8 @@ sonarr:
value: false
resources:
requests:
cpu: 100m
cpu: 10m
memory: 256Mi
serviceAccount:
create: true
service:
main:
controller: main
@@ -80,6 +61,7 @@ sonarr:
protocol: TCP
persistence:
config:
forceRename: sonarr-config
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 20Gi

View File

@@ -16,6 +16,6 @@ dependencies:
- name: app-template
alias: tautulli
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
icon: https://cdn.jsdelivr.net/gh/selfhst/icons/png/tautulli.png
appVersion: v2.15.2

View File

@@ -4,11 +4,8 @@ metadata:
name: tautulli-config-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tautulli-config-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-tautulli
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-tautulli
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -4,11 +4,8 @@ metadata:
name: tautulli-config-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tautulli-config-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: tautulli-config
trigger:

View File

@@ -24,8 +24,6 @@ tautulli:
requests:
cpu: 10m
memory: 128Mi
serviceAccount:
create: true
configMaps:
scripts:
enabled: true
@@ -127,6 +125,7 @@ tautulli:
protocol: HTTP
persistence:
config:
forceRename: tautulli-config
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 5Gi

View File

@@ -21,7 +21,7 @@ dependencies:
- name: app-template
alias: tdarr
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: tdarr-exporter
version: 1.1.7
repository: https://homeylab.github.io/helm-charts/

View File

@@ -4,11 +4,8 @@ metadata:
name: tdarr-config-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tdarr-config-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -63,11 +60,8 @@ metadata:
name: tdarr-server-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tdarr-server-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-tdarr
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-tdarr
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -4,11 +4,8 @@ metadata:
name: tdarr-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tdarr-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
volumeName: tdarr-nfs-storage
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: tdarr-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tdarr-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
persistentVolumeReclaimPolicy: Retain
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: tdarr-config-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tdarr-config-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: tdarr-config
trigger:
@@ -33,11 +30,8 @@ metadata:
name: tdarr-server-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tdarr-server-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: tdarr-server
trigger:

View File

@@ -78,8 +78,6 @@ tdarr:
gpu.intel.com/i915: 1
cpu: 10m
memory: 512Mi
serviceAccount:
create: true
service:
api:
controller: server
@@ -154,5 +152,5 @@ tdarr-exporter:
verify_ssl: false
resources:
requests:
cpu: 100m
cpu: 10m
memory: 256Mi

View File

@@ -22,7 +22,7 @@ dependencies:
- name: app-template
alias: tubearchivist
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: valkey
version: 3.0.6
repository: oci://harbor.alexlebens.net/proxy-registry-1.docker.io/bitnamicharts
@@ -30,4 +30,4 @@ dependencies:
version: 21.6.3
repository: oci://harbor.alexlebens.net/proxy-registry-1.docker.io/bitnamicharts
icon: https://cdn.jsdelivr.net/gh/selfhst/icons/png/tube-archivist.png
appVersion: v0.5.1
appVersion: v0.5.2

View File

@@ -6,9 +6,6 @@ metadata:
labels:
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -38,9 +35,6 @@ metadata:
labels:
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -61,11 +55,8 @@ metadata:
name: tubearchivist-wireguard-conf
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tubearchivist-wireguard-conf
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-tubearchivist
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-tubearchivist
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -4,11 +4,8 @@ metadata:
name: tubearchivist-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tubearchivist-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
volumeName: tubearchivist-nfs-storage
storageClassName: nfs-client

View File

@@ -4,11 +4,8 @@ metadata:
name: tubearchivist-nfs-storage
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: tubearchivist-nfs-storage
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: storage
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
persistentVolumeReclaimPolicy: Retain
storageClassName: nfs-client

View File

@@ -31,22 +31,6 @@ tubearchivist:
envFrom:
- secretRef:
name: tubearchivist-config-secret
probes:
liveness:
enabled: false
custom: true
spec:
exec:
command:
- /usr/bin/env
- bash
- -c
- curl --fail http://localhost:8000/health
failureThreshold: 5
initialDelaySeconds: 60
periodSeconds: 30
successThreshold: 1
timeoutSeconds: 10
resources:
requests:
cpu: 10m
@@ -93,8 +77,6 @@ tubearchivist:
squat.ai/tun: "1"
cpu: 10m
memory: 128Mi
serviceAccount:
create: true
service:
main:
controller: main

View File

@@ -21,11 +21,11 @@ dependencies:
- name: app-template
alias: vaultwarden
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: cloudflared
alias: cloudflared
repository: oci://harbor.alexlebens.net/helm-charts
version: 1.14.8
version: 1.15.0
- name: postgres-cluster
alias: postgres-17-cluster
version: 5.1.0

View File

@@ -4,11 +4,8 @@ metadata:
name: vaultwarden-cloudflared-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: vaultwarden-cloudflared-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -29,11 +26,8 @@ metadata:
name: vaultwarden-data-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: vaultwarden-data-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -88,11 +82,8 @@ metadata:
name: vaultwarden-postgresql-17-cluster-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: vaultwarden-postgresql-17-cluster-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: database
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: vaultwarden-data-backup-source
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: vaultwarden-data-backup-source
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: backup
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
sourcePVC: vaultwarden-data
trigger:

View File

@@ -27,8 +27,6 @@ vaultwarden:
requests:
cpu: 10m
memory: 128Mi
serviceAccount:
create: true
service:
main:
controller: main
@@ -38,7 +36,8 @@ vaultwarden:
targetPort: 80
protocol: HTTP
persistence:
data:
config:
forceRename: vaultwarden-data
storageClass: ceph-block
accessMode: ReadWriteOnce
size: 5Gi

View File

@@ -21,7 +21,7 @@ dependencies:
- name: app-template
alias: yamtrack
repository: https://bjw-s-labs.github.io/helm-charts/
version: 3.7.3
version: 4.0.1
- name: postgres-cluster
alias: postgres-17-cluster
version: 5.1.0

View File

@@ -4,11 +4,8 @@ metadata:
name: yamtrack-config-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: yamtrack-config-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -36,11 +33,8 @@ metadata:
name: yamtrack-oidc-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: yamtrack-oidc-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -61,11 +55,8 @@ metadata:
name: yamtrack-postgresql-17-cluster-backup-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: yamtrack-postgresql-17-cluster-backup-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: database
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
secretStoreRef:
kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-yamtrack
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-yamtrack
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -64,8 +64,6 @@ yamtrack:
requests:
cpu: 10m
memory: 256Mi
serviceAccount:
create: true
service:
main:
controller: main

View File

@@ -4,11 +4,8 @@ metadata:
name: argocd-oidc-secret
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: argocd-oidc-secret
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: server
app.kubernetes.io/part-of: argocd
spec:
secretStoreRef:
kind: ClusterSecretStore
@@ -36,12 +33,8 @@ spec:
# name: argocd-gitea-repo-infrastructure-secret
# namespace: {{ .Release.Namespace }}
# labels:
# app.kubernetes.io/name: argocd-gitea-repo-infrastructure-secret
# app.kubernetes.io/name: {{ .Release.Name }}
# app.kubernetes.io/instance: {{ .Release.Name }}
# app.kubernetes.io/version: {{ .Chart.AppVersion }}
# app.kubernetes.io/component: repo
# app.kubernetes.io/part-of: argocd
# argocd.argoproj.io/secret-type: repository
# spec:
# secretStoreRef:
# kind: ClusterSecretStore

View File

@@ -4,11 +4,8 @@ metadata:
name: http-route-argocd
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-argocd
app.kubernetes.io/name: {{ .Release.Name }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/version: {{ .Chart.AppVersion }}
app.kubernetes.io/component: web
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io

View File

@@ -8,9 +8,6 @@ metadata:
labels:
app.kubernetes.io/name: {{ $stack.name }}
app.kubernetes.io/instance: {{ $stack.name }}
app.kubernetes.io/version: {{ $.Chart.AppVersion }}
app.kubernetes.io/component: {{ $stack.name }}
app.kubernetes.io/part-of: {{ $.Release.Name }}
spec:
syncPolicy:
applicationsSync: create-update

View File

@@ -3,6 +3,9 @@ kind: Application
metadata:
name: cilium
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: {{ $stack.name }}
app.kubernetes.io/instance: {{ $stack.name }}
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
@@ -15,11 +18,11 @@ spec:
name: in-cluster
namespace: kube-system
revisionHistoryLimit: 3
ignoreDifferences:
- group: ""
kind: ServiceMonitor
jqPathExpressions:
- .spec.endpoints[].relabelings[].action
# ignoreDifferences:
# - group: ""
# kind: ServiceMonitor
# jqPathExpressions:
# - .spec.endpoints[].relabelings[].action
syncPolicy:
automated:
prune: true
@@ -42,6 +45,9 @@ kind: Application
metadata:
name: coredns
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: {{ $stack.name }}
app.kubernetes.io/instance: {{ $stack.name }}
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
@@ -57,7 +63,7 @@ spec:
syncPolicy:
automated:
prune: true
selfHeal: false
selfHeal: true
retry:
limit: 10
backoff:
@@ -76,6 +82,9 @@ kind: Application
metadata:
name: metrics-server
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: {{ $stack.name }}
app.kubernetes.io/instance: {{ $stack.name }}
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
@@ -91,7 +100,7 @@ spec:
syncPolicy:
automated:
prune: true
selfHeal: false
selfHeal: true
retry:
limit: 10
backoff:
@@ -110,6 +119,9 @@ kind: Application
metadata:
name: kubelet-serving-cert-approver
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: {{ $stack.name }}
app.kubernetes.io/instance: {{ $stack.name }}
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
@@ -144,6 +156,9 @@ kind: Application
metadata:
name: prometheus-operator-crds
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: {{ $stack.name }}
app.kubernetes.io/instance: {{ $stack.name }}
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:

View File

@@ -54,10 +54,10 @@ applicationSet:
kind: Service
jqPathExpressions:
- .spec.externalName
- kind: StatefulSet
jqPathExpressions:
- .spec.volumeClaimTemplates[].apiVersion
- .spec.volumeClaimTemplates[].kind
# - kind: StatefulSet
# jqPathExpressions:
# - .spec.volumeClaimTemplates[].apiVersion
# - .spec.volumeClaimTemplates[].kind
syncPolicy:
automated:
prune: true
@@ -70,10 +70,10 @@ applicationSet:
kind: GpuDevicePlugin
jqPathExpressions:
- .metadata.annotations[]
- kind: StatefulSet
jqPathExpressions:
- .spec.volumeClaimTemplates[].apiVersion
- .spec.volumeClaimTemplates[].kind
# - kind: StatefulSet
# jqPathExpressions:
# - .spec.volumeClaimTemplates[].apiVersion
# - .spec.volumeClaimTemplates[].kind
syncPolicy:
automated:
prune: true

View File

@@ -28,7 +28,7 @@ maintainers:
- name: alexlebens
dependencies:
- name: gitea
version: 11.0.1
version: 12.0.0
repository: https://dl.gitea.io/charts/
- name: app-template
alias: renovate