Keda http addon strips off Authorization header from request #1115
Unanswered
arsalen536
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm new to KEDA and am trying to use the
keda-add-ons-http scalers
to scale my microservices application on Kubernetes based on incoming HTTP requests. My application is deployed behind an Nginx ingress controller.I've set up an
HTTPScaledObject
for each service that I want to scale, and everything works as expected: the requests trigger the scaling of the target services. However, I’ve encountered an issue where theAuthorization
header is missing from the requests that reach my application. Other headers are preserved correctly.Here’s my setup:
KEDA HTTPScaledObject Configuration:
Service of type ExternalName:
Ingress Object:
The scaling works, but the
Authorization
header seems to be stripped out somewhere between the ingress and the final service. Could this be an issue with the Nginx ingress, KEDA operator, or interceptor? Any advice on how to debug or fix this issue would be greatly appreciated.Beta Was this translation helpful? Give feedback.
All reactions