do_simple/helm/templates/ingress.yaml
vitaliy ec6fe3cfdd
All checks were successful
Build and Push to GHCR / build (push) Successful in 10m52s
cd: edit monifest
2025-11-18 01:04:42 +03:00

18 lines
381 B
YAML

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