18 lines
350 B
YAML
18 lines
350 B
YAML
apiVersion: networking.k8s.io/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: todo-web
|
|
namespace: todo
|
|
labels:
|
|
kiamol: ch21-lab
|
|
annotations:
|
|
kubernetes.io/ingress.class: contour-external
|
|
spec:
|
|
rules:
|
|
- host: todo.kiamol.local
|
|
http:
|
|
paths:
|
|
- path: /
|
|
backend:
|
|
serviceName: todo-web
|
|
servicePort: 80 |