From 9996b1b58fe2c19c6f9bc1e9165af90b3de7a924 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Thu, 26 May 2022 14:34:20 +0200 Subject: [PATCH] dash --- ingress/dashboard.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ingress/dashboard.yaml diff --git a/ingress/dashboard.yaml b/ingress/dashboard.yaml new file mode 100644 index 0000000..bcdc772 --- /dev/null +++ b/ingress/dashboard.yaml @@ -0,0 +1,13 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: dashboard +spec: + entryPoints: + - web + routes: + - match: Host(`traefik.localhost`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) + kind: Rule + services: + - name: api@internal + kind: TraefikService