feat: initial Helm chart scaffold for lunarfront per-customer deployments

This commit is contained in:
Ryan Moon
2026-04-02 07:15:02 -05:00
commit ce503e6bdc
7 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: lunarfront
namespace: {{ .Values.customer.name }}
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: nginx
tls:
- hosts:
- {{ .Values.customer.domain }}
secretName: lunarfront-tls
rules:
- host: {{ .Values.customer.domain }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: lunarfront
port:
number: 80