mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 18:22:54 +02:00
ed0561446d
Deployment, service, and ingress for the AI-generated Phocas XVI Lustrum demo site at phocaslustrum.rubenhensen.nl.
25 lines
600 B
YAML
25 lines
600 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: phocas-lustrum-ingress
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: prod-cluster-issuer
|
|
nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: phocaslustrum.rubenhensen.nl
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: phocas-lustrum
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- secretName: letsencrypt-prod
|
|
hosts:
|
|
- phocaslustrum.rubenhensen.nl
|