Add signage service ingress manifests

This commit is contained in:
Andrew Stoltz
2026-04-09 15:09:08 -05:00
parent 8f59322329
commit 7d5d0f86e7
3 changed files with 96 additions and 0 deletions

View File

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