diff --git a/Charts/argo-cd/values.yaml b/Charts/argo-cd/values.yaml index 652395d..f2a033b 100644 --- a/Charts/argo-cd/values.yaml +++ b/Charts/argo-cd/values.yaml @@ -7,6 +7,7 @@ argo-cd: extraArgs: - --insecure config: + accounts.roxedus: apiKey, login repositories: | - type: helm name: argo-cd diff --git a/Charts/traefik/values.yaml b/Charts/traefik/values.yaml index 298d801..14361c2 100644 --- a/Charts/traefik/values.yaml +++ b/Charts/traefik/values.yaml @@ -120,7 +120,7 @@ traefik: # Create an IngressRoute for the dashboard ingressRoute: dashboard: - enabled: true + enabled: false # Additional ingressRoute annotations (e.g. for kubernetes.io/ingress.class) annotations: {} # Additional ingressRoute labels (e.g. for filtering IngressRoute by custom labels) diff --git a/Deployments/traefik-ingress.yaml b/Deployments/traefik-ingress.yaml new file mode 100644 index 0000000..436879d --- /dev/null +++ b/Deployments/traefik-ingress.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.containo.us/v1alpha1 +kind: IngressRoute +metadata: + annotations: + name: traefik-dashboard + namespace: default +spec: + entryPoints: + - web + routes: + - kind: Rule + match: Host(`traefik.roxedus.com`) && PathPrefix(`/dashboard`) + services: + - kind: TraefikService + name: api@internal