We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
master
When running on k8s KUMA_DP_SERVER_AUTHN_ENABLE_RELOADABLE_TOKENS is always true however, on startup the config dump shows that it's off.
No response
On k8s we set this config to true always:
kuma/pkg/config/dp-server/config.go
Line 92 in 528ef07
We do it in:
kuma/pkg/xds/bootstrap/components.go
Line 21 in 528ef07
This works but when we log the config:
kuma/app/kuma-cp/cmd/run.go
Lines 74 to 78 in c26b168
It shows as false as this is not done in the right place. We should instead use PostProcess:
kuma/pkg/config/config.go
Line 8 in c3afa4a
which does the same but at a more suitable place:
kuma/pkg/config/loader.go
Line 100 in 310a1a3
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Kuma Version
master
Describe the bug
When running on k8s KUMA_DP_SERVER_AUTHN_ENABLE_RELOADABLE_TOKENS is always true however, on startup the config dump shows that it's off.
To Reproduce
No response
Expected behavior
No response
Additional context (optional)
On k8s we set this config to true always:
kuma/pkg/config/dp-server/config.go
Line 92 in 528ef07
We do it in:
kuma/pkg/xds/bootstrap/components.go
Line 21 in 528ef07
This works but when we log the config:
kuma/app/kuma-cp/cmd/run.go
Lines 74 to 78 in c26b168
It shows as false as this is not done in the right place.
We should instead use PostProcess:
kuma/pkg/config/config.go
Line 8 in c3afa4a
which does the same but at a more suitable place:
kuma/pkg/config/loader.go
Line 100 in 310a1a3
The text was updated successfully, but these errors were encountered: