Impact
When debug logging is enabled (via DEBUG
environment variable), the Kubernetes client may log all response bodies into the debug log -- including sensitive data from Secret
resources.
When running in a Kubernetes cluster, this might expose sensitive information to users who are not authorised to access secrets, but have access to Pod logs (either directly using kubectl, or by Pod logs being shipped elsewhere).
Patches
Upgrade to 3.5.0 or newer.
Workarounds
Disable debug logging entirely, or exclude the kubernetes:client
debug item (for example, using DEBUG=*,-kubernetes:client
).
References
Impact
When debug logging is enabled (via
DEBUG
environment variable), the Kubernetes client may log all response bodies into the debug log -- including sensitive data fromSecret
resources.When running in a Kubernetes cluster, this might expose sensitive information to users who are not authorised to access secrets, but have access to Pod logs (either directly using kubectl, or by Pod logs being shipped elsewhere).
Patches
Upgrade to 3.5.0 or newer.
Workarounds
Disable debug logging entirely, or exclude the
kubernetes:client
debug item (for example, usingDEBUG=*,-kubernetes:client
).References