OpsCanary
kubernetessecurityPractitioner

Kubernetes v1.37: Mastering Pod Certificates and Cluster Trust Bundles

5 min read Kubernetes BlogAug 28, 2026Reviewed for accuracy
Share
PractitionerHands-on experience recommended

Kubernetes v1.37 brings a game-changing feature: Pod Certificates and Cluster Trust Bundles. This built-in identity technology addresses the need for secure communication between workloads by integrating X.509 certificate issuance directly into the core of Kubernetes. It simplifies the management of TLS and mTLS, allowing your applications to authenticate securely without the overhead of external tools.

The mechanism behind this feature involves several key components. Your application requests certificates in its pod specification and reads the keys, certificates, and trust bundles from the container filesystem. Kubelet plays a crucial role by issuing PodCertificateRequest objects and managing ClusterTrustBundle objects on behalf of your workloads. The signer controller responds to these requests, deciding whether to issue the certificate and writing it to the container filesystem. Notably, Kubelet also updates these files periodically as the contents of the selected ClusterTrustBundles change, ensuring your applications always have the latest trust information.

In production, you must be aware of a few important details. Automatic rotation of certificates is built in, but your applications need to handle this correctly. Certificates issued by signers in core Kubernetes have a maximum lifetime of 24 hours, while other signers can go up to 91 days. To leverage these features, you'll need to install a third-party signer into your cluster, which adds an extra step in your deployment process. Understanding these nuances will help you implement this technology effectively and securely.

Key takeaways

  • Utilize Pod Certificates for secure TLS and mTLS communication between workloads.
  • Configure your application to request certificates in the pod spec for seamless integration.
  • Implement a third-party signer to fully leverage Pod Certificates and Cluster Trust Bundles.
  • Handle automatic certificate rotation in your applications to avoid disruptions.
  • Be aware of certificate lifetimes: 24 hours for core Kubernetes signers and up to 91 days for others.

Why it matters

This feature significantly enhances security in Kubernetes environments by simplifying the management of identities and trust. It reduces the complexity of integrating external certificate management tools, allowing for more streamlined operations and improved security posture.

Code examples

Go
github.com/ahmedtd/tinycert/lib/spiffefsd

When NOT to use this

The official docs don't call out specific anti-patterns here. Use your judgment based on your scale and requirements.

Want the complete reference?

Read official docs

Test what you just learned

Quiz questions written from this article

Take the quiz →
Linux FoundationSponsor

Industry-standard certifications built by the people behind Linux and Kubernetes. Earn the CKA — the gold standard Kubernetes administrator cert. OpsCanary readers get 30% off year-round with code OPSCANARY3.

Get CKA certified →

Get the daily digest

One email. 5 articles. Every morning.

No spam. Unsubscribe anytime.