33 lines
727 B
YAML
33 lines
727 B
YAML
# 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
|