I'm stumped

This commit is contained in:
SeanOMik 2023-04-02 22:10:26 -04:00
parent 4c28ebea46
commit f1d75d667a
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
1 changed files with 37 additions and 17 deletions

View File

@ -1,20 +1,40 @@
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
#apiVersion: traefik.containo.us/v1alpha1
#kind: IngressRoute
#metadata:
# name: traefik-dashboard
# namespace: traefik
#spec:
# entryPoints:
# - websecure
# - traefik
# routes:
# - kind: Rule
# match: Host(`k3st.***REMOVED***`) && (PathPrefix(`/dashboard/`) || PathPrefix(`/api`))
# priority: 10
# services:
# - kind: Service
# name: traefik-helm
# namespace: traefik
# passHostHeader: true
# port: 9000
# weight: 10
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: traefik-dashboard
name: traefik-dashboard-ingress
namespace: traefik
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
spec:
entryPoints:
- websecure
- traefik
routes:
- kind: Rule
match: Host(`k3st.***REMOVED***`)
priority: 10
services:
- kind: Service
name: traefik-helm
namespace: traefik
passHostHeader: true
port: 9000
weight: 10
rules:
- host: "k3st.***REMOVED***"
http:
paths:
- path: /dashboard
pathType: Prefix
backend:
service:
name: traefik-helm
port:
number: 9000