k8s_journal-wiki/journal-wiki_ingress.yml

22 lines
365 B
YAML
Raw Permalink Normal View History

2021-08-25 11:23:59 -04:00
---
2021-10-19 14:36:44 -04:00
apiVersion: networking.k8s.io/v1
2021-08-25 11:23:59 -04:00
kind: Ingress
metadata:
name: journal-wiki
annotations:
kubernetes.io/ingress.class: haproxy
2021-08-25 11:23:59 -04:00
spec:
rules:
- host: journal-wiki.lan
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: journal-wiki
port:
number: 8080
2021-10-19 14:36:44 -04:00
# EOF