We uses always TLS 1.3 as minimum TLS version for grpc client.
When compiling in FIPS mode (Boringcrpyto with limited approved TLS versions) and Go 1.23, this causes runtime issue: no supported versions satisfy MinVersion and MaxVersion
For http client we allow setting the min TLS version with KEDA_HTTP_MIN_TLS_VERSION. Not sure why we don't allow configuring the value for grpc client as well.
Expected Behavior
It would be nice if we could control the min TLS version for grpc client.
Not sure if through the same env variable (KEDA_HTTP_MIN_TLS_VERSION) or introduce a different one.
Report
no supported versions satisfy MinVersion and MaxVersion
For http client we allow setting the min TLS version with
KEDA_HTTP_MIN_TLS_VERSION
. Not sure why we don't allow configuring the value for grpc client as well.Expected Behavior
KEDA_HTTP_MIN_TLS_VERSION
) or introduce a different one.Actual Behavior
For grpc client - the min tls version is hardcoded to 1.3.
Steps to Reproduce the Problem
If you want to see FIPS issue:
go 1.23.2
withGOEXPERIMENT=boringcrypto
KEDA Version
2.15.0
Kubernetes Version
1.30
Platform
Any
Scaler Details
No response
Anything else?
In Go main branch they approved TLS 1.3 for FIPS but in 1.23.2 it's still not there.