126 wires and counting

$ follow Kubernetes

Keep up with Kubernetes in about 3 minutes: what actually shipped — the commits, pull requests, releases, and security advisories that matter.

or

fair warning: these emails are deeply technical. diffs, version numbers, CVEs, benchmark deltas. if that's not your idea of a good read, this isn't your newsletter.

Folds into your digest — weekly by default, monthly if you prefer. Unsubscribe in one click.

$ status

wire 2026-06-17
stories 99

© 2026 RepoJournal Home Showcase Explore How it works Privacy

$ the-wire · showcase

KOPS BREAKS ETCD COUPLING, KUBERNETES DROPS DEPRECATED SETS

By RepoJournal · Filed · About Kubernetes · Composed from the cited sources · methodology

Kops decouples APIServer from local Etcd with load balancer support [ref:1], while core Kubernetes scrubs deprecated libraries ahead of the 1.36 release.

Kops shipped a significant infrastructure shift by adding support for external Etcd on GCP through load balancers [1], eliminating the requirement that Etcd live on control plane nodes. This is the first major move toward more flexible cluster topologies. The same release added Linode SSH key management [2], expanding Kops' cloud provider coverage. On the Kubernetes core side, the project is systematizing code cleanup: deprecated sets.NewString calls are being replaced with generic implementations [3], and test utilities are being reorganized under scheduler ownership [4]. Kube-state-metrics had to implement two new cache.Store interface methods (Bookmark and LastStoreSyncResourceVersion) to stay compatible with client-go 0.36.2 [6], signaling that the metrics tooling ecosystem is keeping pace with core API changes. Test infrastructure pruned four permanently failing kops upgrade jobs that were incompatible with kops 1.36.0-beta.1 [5], cleaning up CI noise before the release stabilizes.

Action items

References

  1. [1] Added support for APIServer using LB ↗ kubernetes/kops
  2. [2] feat(linode): implement SSH key management and associated tasks ↗ kubernetes/kops
  3. [3] Replacing deprecated sets.NewString with generic implementation kubernetes/kubernetes ↗
  4. [4] test: move code under scheduler_perf ↗ kubernetes/kubernetes
  5. [5] Kops - Remove invalid upgrade jobs ↗ kubernetes/test-infra
  6. [6] feat: implement cache.Store Bookmark and LastStoreSyncResourceVersion… ↗ kubernetes/kube-state-metrics

Quick answers

What shipped in Kubernetes on June 17, 2026?
Kops decouples APIServer from local Etcd with load balancer support [ref:1], while core Kubernetes scrubs deprecated libraries ahead of the 1.36 release. In total, 64 commits and 35 pull requests landed.
Who contributed to Kubernetes on June 17, 2026?
5 developers shipped this update, including cheftako, moshevayner, pohly, rifelpet, and mrueg.
What were the notable Kubernetes updates?
Added support for APIServer using LB, feat(linode): implement SSH key management and associated tasks, and Replacing deprecated sets.NewString with generic implementation.