changed ingress to haproxy ingress

This commit is contained in:
Radar231 2021-10-19 14:33:31 -04:00
parent 0db6f4306f
commit 97459c29df
2 changed files with 21 additions and 2 deletions

View File

@ -1,10 +1,10 @@
---
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: wfh-wiki
annotations:
kubernetes.io/ingress.class: traefik
kubernetes.io/ingress.class: haproxy
spec:
rules:
- host: wfh-wiki.lan

19
wfh-wiki_ingress.yml-old Normal file
View File

@ -0,0 +1,19 @@
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: wfh-wiki
annotations:
kubernetes.io/ingress.class: traefik
spec:
rules:
- host: wfh-wiki.lan
http:
paths:
- path: /
pathType: Prefix
backend:
serviceName: wfh-wiki
servicePort: 8080
# EOF