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
0
votes
1 answer

What is the difference between ingress value as blank array and value - {}?

In kubernetes network policy we can set Ingress value as blank array i.e. [] or we can also set value as - {} What is the difference between using these 2 values? First YAML that I tried - It didn't work apiVersion: networking.k8s.io/v1 kind:…
0
votes
1 answer

Expose pod's tomcat port

I have the bare metall kubernetes pod running tomcat application on port 8085. If it would be common server, the app would be accessible via http://:8085/app. My goal is to expose the tomcat on Kubernetes node's address and the same port…
Anton
  • 96
  • 6
0
votes
1 answer

How to set up https on kubernetes bare metal using traefik ingress controller

I'm running a kubernetes cluster which consists of three nodes and brilliantly works, but it's time to make my web application secure, so I deployed an ingress controller(traefik). But I was unable to find instructions for setting up https on it. I…
dragonhaze
  • 189
  • 1
  • 8
0
votes
1 answer

Traefik ipwhitelist middleware example for kubernetes

I'm having trouble putting using Traefik's IPWhitelist middleware in my kubernetes (1.14) cluster. I'm using the DaemonSet config from here: https://docs.traefik.io/user-guide/kubernetes/ I'd like to apply this whitelist to all traffic in/out of…
Michael Cole
  • 15,473
  • 7
  • 79
  • 96
0
votes
0 answers

TLS in Ingress setup timeout

I deployed a basic service in my kubernetes cluster. I handle routing using this Ingress: --- apiVersion: extensions/v1beta1 kind: Ingress metadata: name: owncloud spec: rules: - host: example.com http: paths: -…
0
votes
1 answer

Traefik Ingress not opening port

I am setting up the development environment for a application we sell. Since we use this environment for active development, it is necessary to build it more or less like the given environment at the customer. Customer uses Kubernetes and traefik.…
xola
  • 455
  • 1
  • 4
  • 15
0
votes
0 answers

Traefik Ingress not work with dns in my /etc/hosts

I create a controller Ingress by traefik documentation using a DaemonSet https://docs.traefik.io/user-guide/kubernetes/ So I changed my /etc/hosts for When I try access in my browser http://traefik-ui.minikube/
0
votes
1 answer

HTTPS request redirected to HTTP

I am running Gunicorn behind a traefik ingress. HTTP is redirected to HTTPS by traefik, but for some reason gunicorn replies with a 301 pointing to HTTP. I have tried pretty much all the options I know off and didn't find any solution. I thought it…
ITChap
  • 4,057
  • 1
  • 21
  • 46
0
votes
1 answer

How to match an exact path but also a path prefix in the same traefik ingress

I have a service that need to receive any request made on / (exact match) /aaa (path prefix) Other paths will be sent to a different service. Using traefik.frontend.rule.type: PathPrefix would work for the the second rule only and…
ITChap
  • 4,057
  • 1
  • 21
  • 46
0
votes
1 answer

Traefik HA with persistent volume

Is there currently any way to utilize kubernetes persistent volumes instead of a KV store in order to store Let's encrypt certificates? From the documentation, storing let's encrypt information inside a json file cannot be used to share info across…
ITChap
  • 4,057
  • 1
  • 21
  • 46
0
votes
1 answer

Traefik: Simple Letsencrypt HTTPS redirect to whoami service throws "404 page not found"

I've tried to get this up and running for two days now and some simple HTTP -> HTTPs redirect does not work! :( Pretty simple use case: whoami.my-example-domain.com:80 => redirect to whoami.my-example-domain.com:443 and then traefik internally…
Sascha
  • 581
  • 1
  • 4
  • 19
0
votes
1 answer

Traefik as an ingress controller + Server GRPC - UNKNOWN: No status received

I use traefik as an ingress controller in AKS, I have a grpc service that run correctly locally, but I have some problem behind traefik. When the GRPC server return an error, I receive it correctly, but when it send a normal response, I didn’t…
jmaitrehenry
  • 2,190
  • 21
  • 31
0
votes
1 answer

Which ingress controller should I use to support WebSocket in a AWS k8s cluster deployed by kops?

I have a cluster on AWS installed via kops. Now I need to expose a WebSocket service (with security enabled, the wss://) to the outside world. There are different ingress controllers, nginx, traefik, ELBs, ALBs. Which one is the suggested and: easy…
0
votes
2 answers

Traefik does not want to work on port 80 AWS

Please, help me to deal with accessibility of my simple application of k8s, via traefik in AWS. I tried to expose ports 30000-32767 on master node, in security group and app is accessible from the world, doesn't want to work just 80 port of traefik!…
0
votes
1 answer

NGINX Container Not Loading Static Files using Traefik / Kubernetes

I am running the Traefik Ingress Controller on Kubernetes (AKS). I've successfully deployed my Django application using the Traefik Ingress but it's not currently loading any static files (and therefore the styling isn't working). Static files are…
Rutnet
  • 1,533
  • 5
  • 26
  • 48