Questions tagged [traefik-ingress]

Traefik-ingress refers to instances when the cloud native edge router Traefik is used as an Ingress controller for a Kubernetes cluster. Use this tag for questions related to such use of the router Traefik.

Traefik-ingress refers to instances when the cloud native edge router Traefik is used as an Ingress controller for a Kubernetes cluster. Use this tag for questions related to such use of the router Traefik.

346 questions
2
votes
2 answers

Mirror traffic using Traefik 2

We are using Traefik v2 running in kubernetes in a shared namespace (called shared), with multiple namespaces for different projects/services. We are utilising the IngressRoute CRD along with middlewares. We need to mirror (duplicate) all incoming…
2
votes
1 answer

AWS ALB service in Kubernetes

I want to deploy Application Load Balancer for Traefik running in Kubernetes. So, I tried the following: kind: Service apiVersion: v1 metadata: name: traefik-application-elb namespace: kube-system annotations: …
roy
  • 6,344
  • 24
  • 92
  • 174
2
votes
0 answers

Unable to access Jaeger UI behind Traefik ingress

I have setup Jaeger as per the instructions from this post. I am unable to access the Jaeger UI in browser when I go to (http://myhost.com/jaeger). Instead of opening the dashboard the browser opens another website with domain myhost.com. I am…
Golide
  • 835
  • 3
  • 13
  • 36
2
votes
2 answers

How does Traefik choose from ingresses with coliding prefixes?

I'm containerizing an existing application and I need a basicauth for a single path prefix, currently I have the following Ingress configuration: apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: service-auth spec: …
2
votes
1 answer

oauth2-proxy returns a white webpage with "Found" link instead of the provider authentication page

I am using oauth2-proxy (v7.2.0) for authentication NB: i use traefik v2 to redirect the requests to oauth2-proxy which is deployed via helm chart. below, the options used to configure my oauth2-proxy extraArgs: provider: "gitlab" redirect-url:…
Abderrahmane
  • 385
  • 2
  • 3
  • 14
2
votes
1 answer

Getting prometheus/grafana and k3s to work together

T learn kubernetes I've built myself a bare metal cluster using 4 Raspberry PIs set it up using k3s: # curl -sfL https://get.k3s.io | sh - Added nodes etc., and everything comes up and I can see all the nodes and almost everything is working as…
Bill Mair
  • 1,073
  • 6
  • 15
2
votes
1 answer

Traefik2.4: uses a non-existent resolver: inwx

i am hiting the issue resolver cannot be found, and read all the related topics, but got no answer ENV: kubernetes v1.20.6 traefik: 2.4.9 Traefik is beeing installed with helm chart. The values.yaml looks like: image: name:…
2
votes
1 answer

Path based routing fails to match propertly with Traefik Ingress in Kubernetes

I have a kubernetes ingress for an application where i'm using path based routing. The cluster is running on Google Cloud Kubernetes Engine and my ingress controller is Traefik v2.4. Some of my links are: https://www.kwetter.org/ -> Homepage…
Dirk Heijnen
  • 51
  • 1
  • 8
2
votes
1 answer

Kubernetes Ingress not working with Traefik and TLS

I am trying to get some stuff working on K8s (1.21.0 on Ubuntu 20.04 on bare metal) and am likely missing something simple. I have installed Traefik (2.4.8) using their helm chart (9.19.1) and the following values file: deployment: kind:…
David Tinker
  • 9,383
  • 9
  • 66
  • 98
2
votes
1 answer

Traefik: Matching a IP and PORT with no HOST name, using IngressRoute

I need to map over a pure static IP with a specific port, it has no hostname attached to. The static IP is exactly the same as what a domain points to, but I need only the IP. The Entrypoint is on a specific port - actually port 9735. I have this…
Ian Gregson
  • 199
  • 2
  • 8
2
votes
2 answers

How can I get the real ip address of a client when using Traefik on k3s?

I have gone through many blog posts and SO questions as well as k3s documentation and am still coming up short getting the real ip address of clients rather than the internal cluster ip address. I have a standard k3s install using Traefik 1.8. As…
Kyle
  • 376
  • 2
  • 13
2
votes
1 answer

How to access Kubernetes Ingress from within a cluster

I have an AWS EKS Cluster with only public subnets (we don't need private subnets for security reasons and I really want to avoid the NAT data transfer charges). In the cluster, we have serviceA and serviceB. Both are exposed via public-facing LB…
2
votes
0 answers

When using "tls-alpn-01" challenge for let's encrypt certs in kubernetes using traefik, I'm getting "acme: error: 400 Timeout during connect"

I'm following the tutorial to use traefik as the ingress and ingress controller for Azure Kubernetes Service (AKS) cluster. I'm using terraform to deploy the traefik (version 1.7.24) helm chart. resource "helm_release" "traefik" { name =…
srsn
  • 175
  • 11
2
votes
0 answers

Kubernetes Traefik Ingress using WebSockets sending 500's

Hello and thanks for reading! We've been trying to setup a secure web socket via traefic to a spring webserver. The connection is inbound to traefik via HTTP/2. The IngressRoute (HttpRouter) responsible for this endpoint is doing the SSL termination…
2
votes
0 answers

Unable to expose Traefik Dashboard by HTTPS

I deployed Traefik on EKS by Traefik/Traefix helm chart, I defined some values as below: service: enabled: true type: LoadBalancer # Additional annotations (e.g. for cloud provider specific config) annotations: …