Files
k8scd/ghost-blog/ingress.yaml
T
2025-03-26 12:16:38 +01:00

33 lines
786 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ghost-blog-ingress
namespace: ghost-blog
labels:
app: ghost-blog
app.kubernetes.io/name: ghost-blog-ingress
app.kubernetes.io/instance: ghost-blog
app.kubernetes.io/version: '5.92'
app.kubernetes.io/component: ingress
app.kubernetes.io/part-of: ghost-blog
annotations:
cert-manager.io/cluster-issuer: prod-cluster-issuer
nginx.ingress.kubernetes.io/proxy-body-size: 1G
spec:
ingressClassName: nginx
tls:
- hosts:
- blog.hensen.io
secretName: ghost-tls-secret
rules:
- host: blog.hensen.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ghost-service
port:
name: ghost