Questions tagged [ingress-route]

8 questions
3
votes
1 answer

From Ingress to IngressRoute with CertManager, HTTP01 Challenge and Let's Encrypt ClusterIssuer

I have a Kubernetes (v1.25.2) cluster running with cert-manager 1.11.0 and Traefik 2.9.6. For some services I want Let's Encrypt to auto sign certificates. For some reason, it feels nicer, to use IngressRoute instead of Ingress. I just can't get…
Danielson
  • 2,605
  • 2
  • 28
  • 51
1
vote
0 answers

How to Canary rollout between two namespace, using Treafik v2

I want to implement Canary release between two namespace : ns-A (old version), ns-B (new version). My cluster have Traefik v2 and it's not possible to install an another controller, two bad because I found solution to do it with istio and nginx. Do…
1
vote
2 answers

Traefik IngressRoute redirect doesn’t work

I have setup following IngressRoute for default path and wp-* apiVersion: traefik.containo.us/v1alpha1 kind: IngressRoute metadata: name: external-1 namespace: marketing spec: entryPoints: - web - websecure routes: - match:…
roy
  • 6,344
  • 24
  • 92
  • 174
0
votes
1 answer

AKS ingress route reloading issue

Hi I am deploying a flutter based web application into AKS private cluster. I configured NGINX ingress controller in my cluster and added dns entries for my ingress controller external IP. I configured a route for my service, when i am hitting only…
0
votes
0 answers

Traefik non-regex specific Path replacements

Running traefik 2.8.4 I have, essentially, a map of paths that need to be redirected. For instance /asdf to /specific-word-1, /qwerty to /another-path, etc. They're not regex replacements, and there's no logical way to do the conversion. They're…
notablytipsy
  • 387
  • 1
  • 4
  • 19
0
votes
0 answers

Traefik IngressRoute multiple TLS certificates not possible?

Learning about how to connect my 2 domains (foo.com, bar.com) to a VPS with on it a single node K3s cluster. Completely new to this I concluded I need for each domain a TLS certificate. I read about DNS.01 challenge but that is for sub domains like…
furion2000
  • 79
  • 7
0
votes
1 answer

error while parsing rule Host(\\`registry.domain.com\\`): 1:6: illegal character U+005C

I have a Kubernetes Cluster set up. I am trying to set up an IngressRoute for traefik dashboard and I have been following this guide: https://blog.zachinachshon.com/traefik-ingress/ When I add the IngressRoute and Middleware I get the following…
Ross
  • 2,463
  • 5
  • 35
  • 91
0
votes
1 answer

traefik ingressroute - URL should redirect to a default path

kubernetes ingress rules, AWS ALB rule has default path rule if no path is provided in the URL. I couldn't figure out similar config in Traefik ingressroute. Right now - https://example.com goes to the default wildfly page. https://example.com/foo…