fc-segmentdisplay: add TLS ingress gitops stub

This commit is contained in:
Andrew Stoltz
2026-04-22 15:55:54 -05:00
parent 3c1d212251
commit 1ded5a61c0

View File

@@ -0,0 +1,39 @@
# FlowerCore SegmentDisplay — TLS + Ingress
# Deployment and Service managed by deploy script (not ArgoCD)
---
apiVersion: v1
kind: Namespace
metadata:
name: fc-segmentdisplay
labels:
app.kubernetes.io/part-of: flowercore
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: segmentdisplay-web-tls
namespace: fc-segmentdisplay
spec:
secretName: segmentdisplay-web-tls
issuerRef:
name: step-ca-acme
kind: ClusterIssuer
dnsNames:
- segmentdisplay.iamworkin.lan
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: segmentdisplay-web
namespace: fc-segmentdisplay
spec:
entryPoints:
- websecure
routes:
- match: Host(`segmentdisplay.iamworkin.lan`)
kind: Rule
services:
- name: segmentdisplay-web
port: 80
tls:
secretName: segmentdisplay-web-tls