Kubernetes covers repositories for container orchestration on Kubernetes: the Kubernetes project itself, command-line tools like kubectl and k9s, package managers such as Helm, and add-ons for networking, deployment automation, and service mesh functionality (Istio, Linkerd). Continuous delivery tools built specifically for Kubernetes, such as ArgoCD and Flux, and distribution variants like k3s for lightweight or edge deployments also fall under this tag.
Teams running Kubernetes typically layer several of these tools together rather than choosing just one. Helm packages application configuration into reusable charts, which is close to a standard for distributing Kubernetes applications. GitOps tools like ArgoCD and Flux then keep a cluster's state in sync with a git repository, so changes get deployed through pull requests instead of manual kubectl commands. For clusters that need traffic management beyond basic Kubernetes networking, a service mesh like Istio or Linkerd adds features such as mutual TLS between services, retries, and fine-grained traffic splitting, though it also adds operational complexity.
For smaller deployments or edge environments, distributions like k3s trim the full Kubernetes control plane down to a lighter footprint that still runs standard workloads, which matters for teams that don't need a full multi-node production cluster.
Points worth checking when adopting a tool in this tag: