feat(k8s/podsync): add Podsync stack (deployment scaled to 0 for data migration)

This commit is contained in:
2026-02-28 22:40:22 +02:00
parent 59aa229d19
commit 10fe26e993
9 changed files with 170 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: podsync
namespace: podsync
annotations:
cert-manager.io/cluster-issuer: letsencrypt
traefik.ingress.kubernetes.io/router.middlewares: authelia-chain-authelia-authelia-auth@kubernetescrd
spec:
tls:
- hosts:
- ${PODSYNC_HOST}
secretName: podsync-tls
rules:
- host: ${PODSYNC_HOST}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: podsync
port:
number: 8080