Skip to main content
Welcome to the tooling section. This article examines the primary tools for managing packages and applications in Kubernetes clusters. Over the past decade Kubernetes has grown rapidly: each release adds features, and the ecosystem of installable packages keeps expanding. However, package-management tooling has not always kept pace—many teams still rely on raw Kubernetes manifests or Helm charts authored and maintained by hand. Here we’ll compare three approaches—plain Kubernetes manifests, Helm, and Glasskube—covering their common use cases, strengths, and trade-offs. The intent is to help you choose the right tool for your workflow, whether you prioritize simplicity, templating power, or an opinionated package manager.
This section focuses on trade-offs you should consider: reproducibility, templating and parameterization, lifecycle operations (install/upgrade/rollback), and operational complexity. Keep these dimensions in mind as you evaluate each tool.
The image is a section overview with a gradient background, listing three topics: Kubernetes Manifests, Helm, and Glasskube, each numbered sequentially.
The diagram above summarizes the three topics we’ll cover: Kubernetes manifests, Helm, and Glasskube. Below are concise descriptions and comparisons to help you decide which approach best matches your team’s needs. Summary comparison Key examples and commands
  • Raw manifests: apply with kubectl apply -f <manifest.yaml>
  • Helm: install with helm install <release> <chart>; upgrade with helm upgrade <release> <chart>
  • Glasskube: covered in depth later—we’ll show installation, configuration, and package lifecycle commands in dedicated sections.
What follows
  • A closer look at plain Kubernetes manifests: when they make sense and how to keep them maintainable.
  • Helm deep dive: templating patterns, chart best practices, and common pitfalls.
  • Glasskube walkthrough: features, workflow examples, and why it may be a better fit for teams that want a curated package experience.
References

Watch Video