Alexis Bruneteau 0f0ea997fe
Some checks failed
Build and Deploy to k3s / build-and-deploy (push) Failing after 2m32s
fixed ingress for deployment
2025-06-02 12:17:10 +02:00

20 lines
433 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hosting-backend-ingress
namespace: hosting
annotations:
kubernetes.io/ingress.class: traefik
spec:
rules:
- host: api.portfolio-host.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: hosting-backend-service
port:
number: 80