Questions tagged [traefik]

Traefik is a reverse proxy and ingress controller configuring itself automatically and dynamically.

17 questions
3
votes
1 answer

How should I run a multicontainer app/platform with nginx behind traefik?

I have Traefik reverse proxy running to allow a couple of docker containerized apps to run on the same domain just to learn about running multiple containers following https://www.smarthomebeginner.com/traefik-reverse-proxy-tutorial-for-docker.…
mwebuet
  • 31
  • 2
2
votes
0 answers

Ingress losing some settings on restart (k3s)

I'm experimenting with some Kubernetes stuff TrueNAS Scale, which comes with k3s (1.25.3) installed. I installed one of the TrueCharts apps (https://truecharts.org/) but the settings for it appear buggy. I had configured it to use a clusterissuer,…
Thorarin
  • 121
  • 2
2
votes
0 answers

Self assigned TLS sertificate traefik

My problem is self assigned cert instead of lets-encrypt cert docker-compose.yml: version: "3.7" services: traefik: image: traefik command: - --api - --providers.docker - --providers.docker.exposedbydefault=false …
pagislav
  • 121
  • 2
2
votes
3 answers

SSL issue while reaching kubernetes dashboard

I'm configuring a kubernetes cluster (using microk8s) and cert-manager. Certificates work fine to traefik dashboard and to other sites but I have an issue with kubernates dashboard as it's already server via SSL (service is on port 443) and I…
1
vote
1 answer

Specify container IP as extra_hosts in Docker Compose

I have a compose.yaml serving WordPress with a Traefik reverse proxy. The https port 443 loopback for the WordPress container fails by default because the WordPress container only listens on http port 80. I need to have the loopback go through the…
1
vote
1 answer

port forward ssh from traefik reverse proxy on docker to a k3s container

I'm running a k3s cluster (1 master + 2 workers) and a docker traefik container on the same host (master). The traefik docker container is actually doing the reverse proxy stuff for tls which is working already on ports 80 and 443 for my different…
jimmi4u
  • 11
  • 2
1
vote
1 answer

How to get traefik ingress to load balance across several ClusterIP services

I want to be able to load balance several nodes of a backend service represented by ClusterIP services using a traefik.containo.us/v1alpha1 ingress. I know that ClusterIP service can load balance easily with deployments and ReplicaSet but the way…
DogEatDog
  • 191
  • 1
  • 7
0
votes
0 answers

Traefik - Http: 499 - Docker + Vagrant + VirtualBox + Nginx - Conection problem

I'm serving a simple HTML page (just says "Hi") using Nginx, behind a Traefik proxy, on a virtual machine provisioned with Vagrant. Everything runs inside Docker containers managed with Docker Compose. The setup is also exposed to the internet…
0
votes
0 answers

Traefik V3 - Error configuring TLS - secret traefik/tls-secret does not exist

We are trying to enable and use tls configuration with secret inside Traefik ingressroute CRD, but the secret is never found but really exist. The error remain the same, secret is not found but secret is really present in the same…
0
votes
1 answer

Why does adding the PROXY Protocol to the Traefik Helm chart configuration in Terraform cause it to fail?

I'm trying to set up the Traefik Helm chart in Kubernetes to get a Let's Encrypt TLS/HTTPS certificate and use it for an IngressRoute, but whenever I add the Proxy Protocol stuff to preserve client IP addresses as per Civo's docs (the trustedIPs,…
colan
  • 173
  • 1
  • 6
0
votes
1 answer

Zitadel server with treafik

I want to create a Zitadel account database behind a crowdsec traefik deployment. I tried the following and want to create some default data for now. But it always fails. No matter how i configure, using the internal or external db. The problem is…
d3rdon
  • 101
  • 1
0
votes
1 answer

the traefik 2.10 changed the x-real-ip and x-forwarded-for http header

I am using traefik 2.10 to forward the http request into kuberentes cluster, the http forward path is: web->openresty->traefik->service->pod, in the host (the forward step is openresty->traefik) I am using tcpdump to check the http request and found…
Dolphin
  • 171
  • 1
  • 8
0
votes
1 answer

Error configuring TLS error: secret xxx does not exist

I am using "Traefik", "cert-mangaer", and "Let's Encrypt". Here is my ClusterIssuer file apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: production-lets-encrypt-issuer namespace: production-hm-cert-manager spec: acme: …
Hongbo Miao
  • 111
  • 1
  • 7
0
votes
2 answers

Can the K3s installed Traefik be updated independently through helm?

If k3s installs traefik and flags it as a helm chart, can it be updated through helm? When I run the commands below, helm repo add traefik https://traefik.github.io/charts helm repo update helm upgrade traefik traefik/traefik -n kube-system I get…
Evan Carroll
  • 2,921
  • 6
  • 37
  • 85
0
votes
1 answer

New install of helm shows traefik and traefik-crd, but why?

When I run helm ls -A on a new install of Helm, I see, $ helm ls -A NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION traefik kube-system 2 2023-08-12…
Evan Carroll
  • 2,921
  • 6
  • 37
  • 85
1
2