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
0 answers

kubernetes traefik ingress 503 bad gateway error

As I want to learn to deploy software with kubernetes, I installed a single node k3s cluster (ip: 192.168.178.10) with curl -sfL https://get.k3s.io | sh -. Now I followed this tutorial to get two services up and expose them to the outside. But when…
8bit
  • 528
  • 2
  • 6
  • 25
0
votes
0 answers

404 page not found Traefik Kubernetes

I can't access to my services via Traefik Ingress. When i request to machine host 192.168.1.2/elastisearch i receive a 404 response from Traefik. When i inspect the ingress i get elasticsearch-api-clusterip:9200 (
0
votes
1 answer

Cannot create service: subset not found"

I have set up traefik with the helm chart. I have an application that I want visible to the outside world. But I am getting this error below. kind: Ingress apiVersion: networking.k8s.io/v1beta1 metadata: namespace: example name: example-ingress …
Jacob
  • 55
  • 1
  • 6
0
votes
0 answers

Traefik Ingress not routing traffic

I have deployed the kubernetes cluster on vagrant machine with config as: one master and two worker nodes. Two services are deployed with named as nodeport-svc-rc and nodeport-svc-rs Services config: # nodeport-svc-rc apiVersion: v1 kind:…
Bharat Gera
  • 800
  • 1
  • 4
  • 13
0
votes
1 answer

Can't reach any of my services with url . k8s / traefik 1.7

I'm having trouble reaching my cluster with urls. I am using ingress to do so. All my pods are running well, and I can see they can comunicate, but I can't access any of my services from browser. I broke it, it has been working for 1 year. Here is…
Juliatzin
  • 18,455
  • 40
  • 166
  • 325
0
votes
0 answers

Custom error page in traefik2 with kubernetes

I want to setup custom error pages for my traefik. I have setup IpWhitelist (https://docs.traefik.io/v2.0/middlewares/ipwhitelist/) middleware which works fine. but in case of failure it shows standard error page "Forbidden". I want to replace it…
maniac
  • 159
  • 2
  • 10
0
votes
0 answers

access kibana with traefik ingress

I would like to configure access to kibana with ingress. I'm using Traefik reverse proxy. I have this configuration, and can't get it to work. What is the right configuration to make it work? apiVersion: networking.k8s.io/v1beta1 kind:…
Gabriel Sousa
  • 131
  • 1
  • 6
0
votes
1 answer

Traefik ingress controller throws error 503 Service Unavailable

I expose my nginx service through traefik ingress controller. Unfortunately, it results with 503 error. $ kubectl create deployment nginx --image=nginx $ kubectl expose deployment nginx --port=80 My traefik ingress configuration following this…
Lukasz Dynowski
  • 11,169
  • 9
  • 81
  • 124
0
votes
0 answers

Accessing application in kubernetes cluster through ingress

I have a cluster setup locally. I have configure ingress controller with traefik v2.2. I have deployed my application and configured the ingress. Ingress service will query the clusterIP. I have configured my DNS with the A record of master node.…
0
votes
1 answer

What happens to traefik if the Kubernetes masters go down?

I have a query, What happens to traefik if Kubernetes goes down? Will it keep working or will it crash/stop serving traffic? Currently, I am using EKS for Kubernetes, with ALB ingress controller. My understanding is that, if Kubernetes master goes…
kadamb
  • 1,532
  • 3
  • 29
  • 55
0
votes
2 answers

Kubernetes: Handle connections with multiple LoadBalancer in cluster via traefik ingress controller

It might be hard to explain so sorry if ı can not explain correctly. In our k8s cluster we have two OpenStack-Load Balancer because we would like to expose our application through ingress which has to be internet facing. In same cluster we also…
semural
  • 3,583
  • 8
  • 37
  • 67
0
votes
1 answer

Traefik 'PathPrefix' not working as expected

I have a kube service that has a /customers resource that will return all customers. It can also return a specific customer at /customers/1. I've configured Traefik ingress as follows: apiVersion: extensions/v1beta1 kind: Ingress metadata: …
Rich
  • 658
  • 1
  • 9
  • 18
0
votes
1 answer

Traefik Ingress times out when connecting from another host, works fine from localhost

I'm trying to get a Kubernetes Cluster to run on a single Redhat 7.7 server. I've previously managed to get it to work on Centos 7 and a Redhat 7.7 AMI on AWS. The Traefik HTTP Ingress Controller appears up and running, however all http requests…
0
votes
2 answers

How to expose multiple application in kubernetes with same host via ingress

I have a two independent application which I deployed via helm and have different SCM repository.I would like to expose both of them via ingress using Openstack Loadbalancer DNS. my aim is to access both application such as hostname:8000 for…
semural
  • 3,583
  • 8
  • 37
  • 67
0
votes
1 answer

Default router with Traefik

I would like to route traffic on HTTP Headers with Traefik. In case there is no matching rules, I need to route to another service or return a custom status code (426). Is it possible to configure default case for rules ? apiVersion:…
Arzhr
  • 435
  • 8
  • 22