This episode traces the origins of cloud native: the container explosion, the birth of Kubernetes at Google, and the founding of CNCF on December 21, 2015. You also learn the official cloud native definition from the TOC and why the world needed a neutral foundation.

Every major ecosystem has an origin story, and cloud native is no exception. Episode 1 takes you back to the time when containers started to go mainstream, shows how technology giants responded, and ends with the birth of the organization that became the center of gravity of the container world: the Cloud Native Computing Foundation.
Why does history matter? Because many decisions that look strange in today's CNCF landscape — for example, why there are so many overlapping projects — make sense once you know the context in which they were born. History also explains the values CNCF holds, such as vendor neutrality and the sustainability of open source projects.
By the end of this episode you will understand three things: the chronology of CNCF's founding, the official cloud native definition from the Technical Oversight Committee, and why the technology world needed a neutral home for cloud native software.
Containers are not a new technology — the concept has existed since the 1970s through chroot and cgroups. But 2013 was the turning point when Docker made containers easy for everyday developers. With a single command, an application could be packaged into an image and run anywhere, ending the classic "it works on my machine" problem.
Docker's popularity grew remarkably fast. Companies started using containers for everything, and along with that convenience came a new problem: how do you manage hundreds of containers running across many machines at once? This was the gap that many orchestrators tried to fill.
It's worth emphasizing: that problem was not merely technical — it was a management problem. Running a single container is easy; keeping hundreds of containers healthy, interconnected, and ready to handle traffic spikes is a far bigger challenge — the challenge that eventually gave birth to the orchestration era.
Google had been running large-scale container systems for over a decade through internal infrastructure called Borg and Omega. In 2014, Google opened that kitchen and released Kubernetes as an open source project. Kubernetes distilled the experience of managing millions of containers into an orchestration system anyone could use.
One key factor in Kubernetes' success was its immediately large community. Thousands of developers from many companies joined in, making Kubernetes not a single-vendor product but a global community asset.
Google's decision to release Kubernetes as open source was not made without calculation. By opening up their internal systems, Google simultaneously invited competitors, partners, and the community to build along. As a result, Kubernetes grew far faster than Google could ever have achieved alone.
On December 21, 2015, Kubernetes was donated by Google to the Cloud Native Computing Foundation, an organization that had just been established under the umbrella of the Linux Foundation. That day marked the birth of CNCF and made Kubernetes the first project under its care.
Donating Kubernetes to a foundation was a bold decision with enormous impact. Instead of remaining a Google-dominated project, Kubernetes became a shared asset that many parties could manage, fund, and steer fairly. This pattern later became the model followed by many other major projects.
The decision also came at the right time. The container community was looking for a shared standard, and more people were realizing that container orchestration should be a shared interest, not the property of a single company. CNCF was born precisely to fill that need.
CNCF's first executive director was Dan Kohn, the figure who laid the foundation of its governance and community. As the organization grew, leadership changed and expanded. Today the Executive Director position is held by Jonathan Bryce, with Chris Aniszczyk as CTO overseeing technical direction and community relations.
This leadership succession is healthy: a mature organization does not depend on a single person. What matters is the institution, the processes, and the community that keep running even as the faces behind them change.
Transparency is key in such transitions. Anyone can read CNCF's decision history, policies, and direction in its public repositories, so leadership changes do not suddenly alter the organization's character.
The Technical Oversight Committee (TOC) defines cloud native as an approach to building and running applications that fully exploits the advantages of the cloud computing model. This definition is elaborated into five core practices:
You will encounter these five pillars repeatedly throughout this series, from the landscape in episode 2 to the AI and platform engineering trends in episodes 17 and 18.
These five practices also complement each other. Containers are the base unit, microservices break an application into small independent services, a service mesh connects those services, immutable infrastructure keeps environments consistent, and declarative APIs enable full automation from declaration to execution.
The most fundamental reason for CNCF's existence is neutrality. An open source project managed by a single company always risks being steered toward that company's interests. CNCF provides a neutral home where technical decisions are made by the community through transparent governance, not by a single vendor.
Vendor lock-in is also a primary concern. With the standards CNCF drives, you can move from one cloud provider to another without rewriting your entire architecture. This capability is a huge selling point for organizations that don't want to be trapped with a single vendor.
This pattern is not empty theory. When a vendor announces support for a CNCF-managed technology, you can be confident that support is based on open standards, not on the vendor's proprietary format.
CNCF guarantees the sustainability of open source projects. As long as a project is under CNCF's care, it receives infrastructure, security, and community support, so it won't easily die just because one company stops contributing.
This is where de facto standards are born: technologies used by the majority of the industry even though they aren't official standards. Kubernetes is the clearest example — it became the container orchestration standard that almost everyone uses, without any standards body formally designating it.
The same phenomenon occurs with other CNCF projects. Prometheus became the de facto standard for metrics, and OpenTelemetry is moving toward the same position for observability. When a technology is used that widely, its role transcends official documents — it becomes the standard because of real-world reality.
Info
As a small exercise, you can see for yourself how big the Kubernetes project is by checking its data directly from GitHub. The command below fetches the creation date, star count, and fork count of the kubernetes/kubernetes repository.
# fetch the creation date, star count, and fork count
curl -sS https://api.github.com/repos/kubernetes/kubernetes | jq -r '.created_at, .stargazers_count, .forks_count'The curl -sS command above calls the GitHub API, while jq formats its output into easy-to-read text. Watching the star count keep growing is one simple way to feel the size of the community behind CNCF's first project.
Episode 1 placed CNCF in history: from the 2013 container explosion, the 2014 birth of Kubernetes, the founding of CNCF on December 21, 2015, to the TOC's cloud native definition and the reasons the world needed a neutral and sustainable foundation.
Key takeaways:
In episode 2 we'll move into the core concepts: the ecosystem, the cloud native landscape, and the four layers — from runtime to provisioning, plus services such as service mesh, observability, security, and storage that fill the space between layers. Open landscape.cncf.io and get ready to see the complete map of the cloud native world.
With that map in hand, your journey to understand CNCF will feel far more directed in the episodes ahead.