Compare commits

...

15 Commits

Author SHA1 Message Date
williamp 85db172de8 Merge pull request 'chore(deps): update helm release authentik to v2026.5.5' (#112) from renovate/authentik-2026.x into main
Reviewed-on: #112
2026-07-17 14:35:30 +00:00
renovate-bot d0263b767b chore(deps): update helm release authentik to v2026.5.5 2026-07-15 18:00:11 +00:00
williamp a913dc0989 authentik: add gateway object to prepare for gateway api migration 2026-07-08 18:07:45 -04:00
williamp 08ceba58c2 Merge pull request 'chore(deps): update helm release authentik to v2026.5.4' (#111) from renovate/authentik-2026.x into main
Reviewed-on: #111
2026-07-08 21:58:24 +00:00
renovate-bot 0e6ba2c4d9 chore(deps): update helm release authentik to v2026.5.4 2026-07-08 13:00:10 +00:00
actions eab7f0a533 yt-dlp-bot: deploy update to f48776c 2026-07-05 01:04:40 +00:00
williamp ac2ae0c3df attic: migrate to gateway API 2026-07-04 16:34:03 -04:00
williamp 93663535bc jellyfin: migrate metrics-block to httproute as well 2026-07-04 16:27:27 -04:00
williamp d06ef83ee2 jellyfin: rm ssl cert secret 2026-07-04 16:23:59 -04:00
williamp 8ad2c46c20 jellyfin: migrate to gateway API 2026-07-04 16:23:06 -04:00
williamp c83625bc88 gitea: migrate to gateway API for ingress 2026-07-04 16:14:20 -04:00
williamp ef81d700a8 Merge pull request 'chore(deps): update helm release gitea to v12.7.0' (#110) from renovate/gitea-12.x into main
Reviewed-on: #110
2026-07-04 17:08:00 +00:00
renovate-bot b62f3935be chore(deps): update helm release gitea to v12.7.0 2026-07-04 17:00:09 +00:00
williamp 412a6918b6 Merge pull request 'chore(deps): update helm release gitea to v12.6.3' (#109) from renovate/gitea-12.x into main
Reviewed-on: #109
2026-06-21 23:44:42 +00:00
renovate-bot 34dab7a09f chore(deps): update helm release gitea to v12.6.3 2026-06-21 22:00:08 +00:00
12 changed files with 136 additions and 66 deletions
-10
View File
@@ -1,10 +0,0 @@
apiVersion: v1
kind: Secret
metadata:
name: cert-dubyatp-xyz
annotations:
replicator.v1.mittwald.de/replicate-from: "cert-manager/cert-dubyatp-xyz"
replicator.v1.mittwald.de/replicated-keys: "tls.crt,tls.key"
data:
tls.crt: ""
tls.key: ""
+18
View File
@@ -0,0 +1,18 @@
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: traefik
spec:
gatewayClassName: traefik
listeners:
- name: https
protocol: HTTPS
port: 8443
tls:
mode: Terminate
certificateRefs:
- name: cert-dubyatp-xyz
namespace: cert-manager
allowedRoutes:
namespaces:
from: Same
+19
View File
@@ -0,0 +1,19 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: attic
spec:
parentRefs:
- name: traefik
sectionName: https
kind: Gateway
hostnames:
- nix-cache.dubyatp.xyz
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: attic-svc
port: 8080
+1 -1
View File
@@ -24,5 +24,5 @@ appVersion: "1.0"
dependencies: dependencies:
- name: authentik - name: authentik
version: 2026.5.3 version: 2026.5.5
repository: https://charts.goauthentik.io repository: https://charts.goauthentik.io
+18
View File
@@ -77,6 +77,24 @@ authentik:
name: authentik-files name: authentik-files
key: AWS_SECRET_ACCESS_KEY key: AWS_SECRET_ACCESS_KEY
additionalObjects: additionalObjects:
- apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: traefik
spec:
gatewayClassName: traefik
listeners:
- name: https
protocol: HTTPS
port: 8443
tls:
mode: Terminate
certificateRefs:
- name: cert-dubyatp-xyz
namespace: cert-manager
allowedRoutes:
namespaces:
from: Same
- apiVersion: networking.k8s.io/v1 - apiVersion: networking.k8s.io/v1
kind: Ingress kind: Ingress
metadata: metadata:
+1 -1
View File
@@ -24,5 +24,5 @@ appVersion: "1.0"
dependencies: dependencies:
- name: gitea - name: gitea
version: 12.6.2 version: 12.7.0
repository: https://weyma-s3.infra.dubyatp.xyz/helm-bucket-ea34bc44-ef19-480d-a16a-1e583991f123/charts/ repository: https://weyma-s3.infra.dubyatp.xyz/helm-bucket-ea34bc44-ef19-480d-a16a-1e583991f123/charts/
+39 -19
View File
@@ -1,15 +1,27 @@
gitea: gitea:
replicaCount: 3 replicaCount: 3
ingress: # ingress:
enabled: true # enabled: true
hosts: # hosts:
- host: git.dubyatp.xyz # - host: git.dubyatp.xyz
paths: # paths:
- path: / # - path: /
tls: # tls:
- secretName: cert-dubyatp-xyz # - secretName: cert-dubyatp-xyz
hosts: # hosts:
- git.dubyatp.xyz # - git.dubyatp.xyz
gateway:
httpRoute:
enabled: true
hostnames:
- git.dubyatp.xyz
parentRefs:
- name: traefik
sectionName: https
kind: Gateway
pathType: PathPrefix
paths:
- path: /
persistence: persistence:
enabled: true enabled: true
create: true create: true
@@ -105,16 +117,24 @@ gitea:
services: services:
- name: gitea-ssh - name: gitea-ssh
port: 22 port: 22
- apiVersion: v1 - apiVersion: gateway.networking.k8s.io/v1
kind: Secret kind: Gateway
metadata: metadata:
name: cert-dubyatp-xyz name: traefik
annotations: spec:
replicator.v1.mittwald.de/replicate-from: "cert-manager/cert-dubyatp-xyz" gatewayClassName: traefik
replicator.v1.mittwald.de/replicated-keys: "tls.crt,tls.key" listeners:
data: - name: https
tls.crt: "" protocol: HTTPS
tls.key: "" port: 8443
tls:
mode: Terminate
certificateRefs:
- name: cert-dubyatp-xyz
namespace: cert-manager
allowedRoutes:
namespaces:
from: Same
- apiVersion: external-secrets.io/v1 - apiVersion: external-secrets.io/v1
kind: ExternalSecret kind: ExternalSecret
metadata: metadata:
+18
View File
@@ -0,0 +1,18 @@
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: traefik
spec:
gatewayClassName: traefik
listeners:
- name: https
protocol: HTTPS
port: 8443
tls:
mode: Terminate
certificateRefs:
- name: cert-dubyatp-xyz
namespace: cert-manager
allowedRoutes:
namespaces:
from: Same
+14 -13
View File
@@ -1,4 +1,4 @@
{{- if and (.Values.jellyfin.metrics.enabled) (.Values.jellyfin.ingress.enabled) -}} {{- if and (.Values.jellyfin.metrics.enabled) (.Values.jellyfin.httpRoute.enabled) -}}
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
@@ -13,21 +13,22 @@ spec:
port: 6767 port: 6767
targetPort: 6767 targetPort: 6767
--- ---
apiVersion: networking.k8s.io/v1 apiVersion: gateway.networking.k8s.io/v1
kind: Ingress kind: HTTPRoute
metadata: metadata:
name: block-metrics name: block-metrics
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
spec: spec:
parentRefs:
{{- toYaml .Values.jellyfin.httpRoute.parentRefs | nindent 4 }}
hostnames:
{{- toYaml .Values.jellyfin.httpRoute.hostnames | nindent 4 }}
rules: rules:
- host: {{ (index .Values.jellyfin.ingress.hosts 0).host }} - matches:
http: - path:
paths: type: PathPrefix
- pathType: Prefix value: /metrics
path: "/metrics" backendRefs:
backend: - name: dummy-svc
service: port: 6767
name: dummy-svc
port:
number: 6767
{{- end }} {{- end }}
-11
View File
@@ -1,11 +0,0 @@
apiVersion: v1
data:
tls.crt:
tls.key:
kind: Secret
metadata:
annotations:
replicator.v1.mittwald.de/replicate-from: cert-manager/cert-dubyatp-xyz
replicator.v1.mittwald.de/replicated-keys: tls.crt,tls.key
name: cert-dubyatp-xyz
type: Opaque
+7 -10
View File
@@ -1,17 +1,14 @@
jellyfin: jellyfin:
deploymentStrategy: deploymentStrategy:
type: Recreate type: Recreate
ingress: httpRoute:
enabled: true enabled: true
hosts: parentRefs:
- host: jellyfin.dubyatp.xyz - name: traefik
paths: sectionName: https
- path: / kind: Gateway
pathType: ImplementationSpecific hostnames:
tls: - jellyfin.dubyatp.xyz
- secretName: cert-dubyatp.xyz
hosts:
- jellyfin.dubyatp.xyz
persistence: persistence:
config: config:
size: 25Gi size: 25Gi
+1 -1
View File
@@ -14,7 +14,7 @@ spec:
spec: spec:
containers: containers:
- name: yt-dlp-bot - name: yt-dlp-bot
image: 'git.dubyatp.xyz/williamp/yt-dlp-bot:7c4c14d' image: 'git.dubyatp.xyz/williamp/yt-dlp-bot:f48776c'
env: env:
- name: OUT_PATH - name: OUT_PATH
value: /data/youtube-vids value: /data/youtube-vids