Define, install, and upgrade Kubernetes applications using charts — templated YAML packages with versioned releases. The closest thing to apt for Kubernetes.
brew install helmA curated, opinionated list of the projects most teams reach for on top of kubectl — packaging, GitOps, observability, security, and dev experience.
Bundle and template your manifests.
Define, install, and upgrade Kubernetes applications using charts — templated YAML packages with versioned releases. The closest thing to apt for Kubernetes.
brew install helmLayer YAML patches on top of a base manifest to produce environment-specific variants — without templates. Built into kubectl since 1.14 as kubectl apply -k.
brew install kustomizeTools that live next to kubectl.
A blazing-fast TUI that lets you observe and manage Kubernetes clusters from the keyboard. Pod logs, exec, scale, port-forward — all without typing kubectl.
brew install k9sTails logs from multiple Pods and containers at once with colored output. Indispensable for debugging multi-replica or multi-container workloads.
brew install sternTiny utilities that let you change cluster context and namespace in one short command — kubectx prod, kubens monitoring. Pairs well with fzf for fuzzy selection.
brew install kubectxDiscover, install, and manage kubectl plugins from a curated index of 200+ tools. Adds commands like kubectl tree, kubectl neat, kubectl who-can.
(Stand up clusters — local, edge, or CI.
Run a local Kubernetes cluster on your laptop using a VM, container, or bare metal. Great for tutorials, demos, and learning the API.
brew install minikubeSpins up Kubernetes clusters inside Docker containers — ideal for CI pipelines and for testing the multi-node behaviors that minikube avoids.
brew install kindA fully-compliant Kubernetes distribution under 60 MB designed for IoT, edge, and CI. Single binary, batteries-included.
curl -sfL https://get.k3s.io | sh -Drive the cluster from Git.
Continuously reconciles cluster state against manifests stored in Git. Provides a slick UI for inspecting application sync status and rolling back.
kubectl create namespace argocd && kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yamlA set of controllers that keep your clusters in sync with Git-stored configuration. Modular, CRD-driven, with first-class support for Kustomize and Helm.
brew install fluxcd/tap/fluxSee what is happening inside.
The de-facto metrics stack for Kubernetes. Scrapes metrics endpoints across the cluster, stores them, and serves PromQL queries.
helm install prometheus prometheus-community/kube-prometheus-stackVisualize Prometheus, Loki, and other backends in shareable dashboards. The standard observability frontend for Kubernetes clusters.
helm install grafana grafana/grafanaPolicies, network, and beyond.
A CNI plugin built on eBPF that handles networking, observability, and network policy at kernel speed. Powers Hubble — a service-map and flow observer for the cluster.
cilium installBrings Open Policy Agent to Kubernetes as an admission controller. Enforce custom policies (no privileged Pods, required labels, image registry allowlist) in Rego.
helm install gatekeeper/gatekeeper --name-template=gatekeeper -n gatekeeper-system --create-namespaceMake day-to-day dev pleasant.
Watches your source, rebuilds images, updates Kubernetes manifests, and tails logs — all from a single Tiltfile. Built for inner-loop dev on Kubernetes.
brew install tilt-dev/tap/tiltA cross-platform desktop app for managing Kubernetes clusters. Provides cluster overview, terminals, Helm management, and Prometheus integration in one window.
brew install --cask lens