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

This commit is contained in:
2026-03-11 19:31:13 +02:00
parent 6d1373abc5
commit 3598969583
10 changed files with 362 additions and 28 deletions

View File

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