Files
homelab/cluster/applications/couchdb/templates/ingress-public.yaml
Hermes Agent service account bc34a1f915 couchdb: increase nginx proxy body size to 100m
Fixes 413 Entity Too Large error in Obsidian LiveSync sync operations.
Applies to both internal (communicore.local) and public (communicore.mk-labs.cloud) ingress routes.
2026-06-30 23:09:56 -05:00

36 lines
1.3 KiB
YAML

# ------------------------------------------------------------------------------
# FILE: cluster/applications/couchdb/ingress-public.yaml
# DESCRIPTION: External ingress for CouchDB — communicore.mk-labs.cloud only.
# Separate from the Helm-managed internal ingress so each cert
# has the correct CN for its hostname. CN validation in Obsidian
# Sync requires CN=communicore.mk-labs.cloud on the public cert.
# ------------------------------------------------------------------------------
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: couchdb-public
namespace: couchdb
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
external-dns.alpha.kubernetes.io/hostname: "communicore.mk-labs.cloud"
external-dns.alpha.kubernetes.io/target: "ingress.mk-labs.cloud"
external-dns.alpha.kubernetes.io/public: "true"
nginx.ingress.kubernetes.io/proxy-body-size: "100m"
spec:
ingressClassName: nginx
rules:
- host: communicore.mk-labs.cloud
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: couchdb-svc-couchdb
port:
number: 5984
tls:
- secretName: couchdb-tls-public
hosts:
- communicore.mk-labs.cloud