kube-iaas/wordpress/ingress.yml
Alexis Bruneteau 1a7a4a9828 ingress
2025-06-03 11:29:15 +02:00

18 lines
374 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: wordpress-ingress
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: web
spec:
rules:
- http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: wordpress
port:
number: 80