← Problem Library
K8s L4 K8S 1326 · 14 min

A cert-manager renewal succeeds and the new certificate never reaches the app because the pod mounts the secret through subPath and therefore never sees the updated file

The Secret object changes, yet the running container still serves the old certificate because the mount mode broke live update propagation.

K8sPlatform ReliabilityLevel 4Pro14 min
Scenario

A certificate rotates successfully in cluster state and the application continues presenting the old material until a restart.

What to check first
  • Identify the primary failure signal in the The Secret Rotated, the Mounted File Stayed Frozen scenario.
  • Separate visible symptoms from the underlying technical dependency.
  • Describe the safest recovery path and the follow-up prevention work.
Checking checklist
  1. Summarize the current impact and the last known change.
  2. Collect direct evidence from logs, runtime state, and configuration before changing anything.
  3. Separate immediate recovery from permanent prevention work.
Recovery and prevention

Check mount style before changing renewal cadence or certificate issuer settings.

Questions worth viewing together
What should you verify first when A cert-manager renewal succeeds and the new certificate never reaches the app appears?

Community-field Kubernetes problem inspired by community cert-manager patterns where subPath-mounted Secrets never reflected renewed certificates. Secret rotation debugging should include how the file enters the container, not only whether the Secret updated.

What usually causes A cert-manager renewal succeeds and the new certificate never reaches the app in production?

Teams often blame cert-manager when the pod never had a refresh-capable mount pattern.

What should you document after resolving A cert-manager renewal succeeds and the new certificate never reaches the app?

subPath mounts trade convenience for losing many live-update semantics.