add db, ingress, ml, pvc, secrets,svc, deployment for immich

This commit is contained in:
2025-12-28 03:33:49 +05:30
parent 63ff9eca66
commit 6a191db107
9 changed files with 341 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: immich-ingress
namespace: media
annotations:
cert-manager.io/cluster-issuer: letsencrypt-cloudflare
traefik.ingress.kubernetes.io/router.entrypoints: websecure
spec:
ingressClassName: traefik
tls:
- hosts:
- immich.akshun-lab.cc
secretName: immich-tls
rules:
- host: immich.akshun-lab.cc
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: immich-service
port:
number: 2283