cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit 569db27690701980f45f625f2f495b66e418c621
parent 67c185b89033db4c4cd2ab56208de166bddcada4
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun,  7 Jul 2024 21:50:11 +0200

Add dashboard

Diffstat:
Aapps/base/traefik/dashboard_ingressroute.yml | 18++++++++++++++++++
Mapps/base/traefik/kustomization.yaml | 1+
2 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/apps/base/traefik/dashboard_ingressroute.yml b/apps/base/traefik/dashboard_ingressroute.yml @@ -0,0 +1,18 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + name: traefik-dashboard + namespace: traefik-ingress + annotations: + traefik.ingress.kubernetes.io/router.middlewares: default-hsts@kubernetescrd,default-redirect-https@kubernetescrd +spec: + entryPoints: + - websecure + routes: + - match: Host(`dashboard.kubernetes.midnightthoughts.space`) + kind: Rule + services: + - name: api@internal + kind: TraefikService + tls: + secretName: midnightthoughts-tls-secret diff --git a/apps/base/traefik/kustomization.yaml b/apps/base/traefik/kustomization.yaml @@ -5,3 +5,4 @@ resources: - repository.yaml - release.yaml - middlewares.yaml + - dashboard_ingressroute.yml