A workload rotates a trust bundle and one sidecar keeps failing outbound TLS connections until a full restart happens.
A pod reads the updated Secret but the sidecar still fails because it caches the old trust bundle at startup and never reloads it
Part of the workload sees fresh secret data, yet one container continues to use the original bundle it loaded only once during bootstrap.
Scenario
What to check first
- Identify the primary failure signal in the Sidecar Trust Bundle Staleness scenario.
- Separate visible symptoms from the underlying technical dependency.
- Describe the safest recovery path and the follow-up prevention work.
Checking checklist
- Summarize the current impact and the last known change.
- Collect direct evidence from logs, runtime state, and configuration before changing anything.
- Separate immediate recovery from permanent prevention work.
Recovery and prevention
Check whether each container reloads secret-backed files or snapshots them only at startup.
Questions worth viewing together
Community-field Kubernetes secret problem inspired by Stack Overflow cases where sidecars cached trust bundles and missed Secret refreshes. A rotated Secret does not help a container that copied or cached the original bundle during bootstrap.
Teams often think the secret update failed when the sidecar simply never reloads the file.
Multi-container pods can consume the same Secret with very different refresh behavior.
Similar cases seen in the field