k3s-cluster/cluster/core/networking/traefik/dashboard-ingress.yaml

43 lines
1.0 KiB
YAML
Raw Normal View History

2023-04-05 03:10:05 +00:00
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: traefik-dashboard-ingress
namespace: traefik
2023-04-03 02:10:26 +00:00
annotations:
2023-04-05 02:42:19 +00:00
cert-manager.io/cluster-issuer: "letsencrypt-production"
spec:
2023-04-05 03:10:05 +00:00
entryPoints:
- websecure
- traefik
routes:
- kind: Rule
match: Host(`k3st.***REMOVED***`) && (PathPrefix(`/dashboard/`) || PathPrefix(`/api/`))
2023-04-05 03:10:05 +00:00
priority: 10
services:
- kind: Service
name: traefik
2023-04-05 03:10:05 +00:00
namespace: traefik
passHostHeader: true
port: 9000
weight: 10
#apiVersion: networking.k8s.io/v1
#kind: Ingress
#metadata:
# name: traefik-dashboard-ingress
# namespace: traefik
# annotations:
# cert-manager.io/cluster-issuer: "letsencrypt-production"
# traefik.ingress.kubernetes.io/router.entrypoints: websecure
#spec:
# rules:
# - host: "k3st.***REMOVED***"
# http:
# paths:
# - path: /dashboard
# pathType: Prefix
# backend:
# service:
# name: traefik
# port:
# number: 9000