Kubernetes

Kubernetes is the open-source container orchestrator Google donated to the Cloud Native Computing Foundation (graduated project, Apache 2.0 license). Current release is v1.36 "Haru" (April 22, 2026), patched to v1.36.2 on June 9, 2026; v1.37.0 ships August 26, 2026 under CNCF's N-2 support window (~14 months per minor). Its control plane runs etcd, kube-apiserver, kube-scheduler, and kube-controller-manager, plus a kubelet on every node β€” five components a team must run before deploying a workload. Per CNCF's 2025 Annual Survey (published Jan 2026), 82% of container users run it in production, it holds 92% of orchestration-tool market share, 79% of users run it managed (EKS/GKE/AKS) rather than self-hosted, and 77% of Fortune 100 firms run it in production. Current version/status: v1.36.2 "Haru" (June 9, 2026); v1.37.0 due Aug 26, 2026. License: Apache 2.0. Pricing: Kubernetes itself is free; managed control planes cost extra β€” EKS standard $0.10/hr (~$73/mo, jumps to $0.60/hr after 14-month extended support), GKE $0.10/hr offset by a $74.40/mo credit covering one cluster, AKS free on the Free tier or $0.10-$0.60/hr on Standard/Premium tiers; ECS has no control-plane fee at all. Maintained by CNCF (graduated project); originally created and open-sourced by Google in 2014.

Also known as: k8s, kube
🧊Why learn Kubernetes?

Pick Kubernetes when you have 15+ services, multiple teams, and need one API that works identically on AWS, GCP, and Azure β€” that portability is the entire reason it exists. Skip it for a 3-person shop running five services: ECS has zero control-plane fee versus EKS's ~$73/mo, and Nomad replaces etcd+apiserver+scheduler+controller-manager+kubelet with a single binary. Want Kubernetes-shaped without the pain? K3s swaps etcd for SQLite and is CNCF-certified for edge and sub-100-node clusters. Even Kubernetes' own ecosystem admits the weakness: teams routinely burn 40+ hours a month on control-plane care before a single app ships. Known weakness: Kubernetes practitioners themselves acknowledge the operational tax: standing up a production-ready cluster requires running etcd, kube-apiserver, kube-scheduler, and kube-controller-manager (plus kubelet per node), and small teams report 40+ hours a month of control-plane maintenance before deploying a single application.

See how it ranks β†’

Compare Kubernetes

Learning Resources

Related Tools

Alternatives to Kubernetes

Other Containers & Infrastructure

View all β†’
.env
.env is a file format and tool used to store environment variables, which are key-value pairs that configure application settings like API keys, database URLs, and other sensitive or environment-specific data. It allows developers to separate configuration from code, making applications more secure and portable across different environments (e.g., development, testing, production). Tools like dotenv in Node.js or python-dotenv in Python parse .env files to load these variables into the application's environment at runtime.
.htaccess
.htaccess (Hypertext Access) is a configuration file used on Apache web servers to control directory-level settings, such as URL redirection, access control, and performance optimizations. It allows developers to override global server configurations for specific directories without modifying the main server configuration files. This file is commonly used for tasks like password protection, custom error pages, and enabling features like mod_rewrite for URL manipulation.
.htaccess
.htaccess (Hypertext Access) is a configuration file used on Apache web servers to control directory-level settings, such as URL redirection, access control, and performance optimizations. It allows developers to override global server configurations for specific directories without modifying the main server configuration files. This file is commonly used for tasks like enabling HTTPS, blocking IP addresses, or setting custom error pages.
.htaccess Redirect
.htaccess redirect is a server-side configuration technique using the .htaccess file on Apache web servers to manage URL redirections, such as redirecting old URLs to new ones, enforcing HTTPS, or handling errors like 404 pages. It operates through directives like Redirect, RedirectMatch, and RewriteRule, allowing developers to control traffic flow without modifying server-wide settings. This method is essential for SEO, user experience, and maintaining link integrity during website migrations or updates.
.NET Interactive
.NET Interactive is an open-source tool that enables interactive programming experiences across multiple languages (C#, F#, PowerShell, SQL, HTML, JavaScript) within notebooks like Jupyter, Visual Studio Code, and Azure Data Studio. It allows developers to create and share executable documents that combine code, visualizations, and narrative text, facilitating data exploration, documentation, and teaching. The tool integrates with the .NET ecosystem, providing rich output capabilities and extensions for data science and machine learning workflows.
.NET Profiling Tools
.NET profiling tools are software utilities used to analyze the performance, memory usage, and behavior of .NET applications during execution. They help developers identify bottlenecks, memory leaks, and inefficiencies by collecting data on CPU usage, garbage collection, thread activity, and method execution times. These tools are essential for optimizing .NET applications to ensure they run efficiently and reliably in production environments.