k8s_notes-wiki/notes-wiki_ingress.yml

22 lines
359 B
YAML
Raw Permalink Normal View History

2021-08-01 21:15:14 -04:00
---
2021-10-19 14:38:43 -04:00
apiVersion: networking.k8s.io/v1
2021-08-01 21:15:14 -04:00
kind: Ingress
metadata:
name: notes-wiki
annotations:
kubernetes.io/ingress.class: haproxy
2021-08-01 21:15:14 -04:00
spec:
rules:
- host: notes-wiki.lan
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: notes-wiki
port:
number: 8080
2021-08-01 21:15:14 -04:00
# EOF