changed ingress to haproxy ingress

This commit is contained in:
Radar231 2021-10-19 14:36:13 -04:00
parent 9f6f7051fe
commit 88321fa89f
2 changed files with 20 additions and 2 deletions

View File

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

18
heimdall_ingress.yml-old Normal file
View File

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