Files
bluejay-infra/apps/fc-chat/fc-chat.yaml
Andrew Stoltz 929449c55c apps: fc-chat refactor + fc-menuboard app split
- fc-chat.yaml: TLS/IngressRoute only (Deployment managed by deploy script, matches fc-signage/fc-mysql/fc-kiosk pattern)
- fc-menuboard: new app bundle

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-16 19:25:25 -05:00

33 lines
637 B
YAML

# FlowerCore Chat — TLS + Ingress
# Deployment and Service managed by deploy script (not ArgoCD)
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: chat-web-tls
namespace: fc-chat
spec:
secretName: chat-web-tls
issuerRef:
name: step-ca-acme
kind: ClusterIssuer
dnsNames:
- chat.iamworkin.lan
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: chat-web
namespace: fc-chat
spec:
entryPoints:
- websecure
routes:
- match: Host(`chat.iamworkin.lan`)
kind: Rule
services:
- name: chat-web
port: 80
tls:
secretName: chat-web-tls