20 lines
489 B
YAML
20 lines
489 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: benthos-ingress
|
|
namespace: infra
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: web
|
|
spec:
|
|
rules:
|
|
- host: benthos.local # You will add this to your Windows 'hosts' file
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: benthos-ui
|
|
port:
|
|
number: 4195
|
|
# kubectl apply -f infra/benthos/benthos-ingress.yaml |