All checks were successful
Build and Push to GHCR / build (push) Successful in 10m52s
18 lines
381 B
YAML
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 |