SimonSchneider / traefik-jwt-decode

Traefik forward auth implementation for JWT tokens
Apache License 2.0
29 stars 15 forks source link

Liveliness probe check fails with 401 in Kubernetes using Helm chart #42

Open HerveZu opened 1 year ago

HerveZu commented 1 year ago

Helm repository : https://athics-team.github.io/traefik-jwt-decode/ Helm chart : traefik-jwt-decode Helm version : 0.1.0 Helm values

replicaCount: 1
service:
  port: 8080
env:
  PORT: 8080
  AUTH_HEADER_REQUIRED: "true"
  JWKS_URL: https://myauth0tenant.auth0.com/.well-known/jwks.json

When deploying to my Kubernetes cluster, the liveliness probe check fails (401). I looked at the configuration and the probe checks (both liveliness and readiness) were not set to use /ping but the default / instead, despite the configuration in this file.

Do you have any idea of how to fix this ?