News › security

Kubernetes 1.37 Introduces Pod Certificates and Cluster Trust Bundles

By Zayden R., August 29, 2026

Kubernetes 1.37 has been released, featuring Pod Certificates and Cluster Trust Bundles, enhancing production identity security. Engineers should note the shift from JWTs to X.509 certificates for improved authentication.

Kubernetes has announced version 1.37, introducing Pod Certificates and Cluster Trust Bundles. These features are designed to enhance the security of production identities by integrating X.509 certificate issuance for TLS and mTLS directly into Kubernetes. This change is significant for engineers managing workloads, as it addresses the inherent security limitations of service account JWTs.

Service account JWTs have been a staple in Kubernetes for workload authentication, but they come with a key drawback: they are bearer tokens. If a token is compromised, the holder can impersonate the workload's identity. While some mitigations exist, such as time-, object-, and audience-binding, they are not foolproof.

The shift to Pod Certificates and Cluster Trust Bundles offers a more secure alternative. These new features utilize proof-of-possession credentials, which rely on asymmetric cryptographic signatures like RSA and ECDSA. This means that instead of sharing the entire credential, only a proof of possession is shared, reducing the risk of identity theft.

For engineers, this means a potential change in how workloads authenticate within Kubernetes environments. The integration of X.509 certificates directly into Kubernetes' core should simplify the process and enhance security. It's a solid improvement for those concerned with the integrity and security of their Kubernetes deployments.

The release of Kubernetes 1.37 is a call to action for sysadmins and engineers to evaluate their current authentication mechanisms and consider the benefits of transitioning to the new Pod Certificates system. As Kubernetes continues to evolve, staying informed and adapting to these changes is crucial for maintaining secure and efficient operations.

Sources

Practice this on a real machine

The Linux Camp teaches these topics as hands-on labs on real virtual machines, verified as you type.