mirror of
https://github.com/nubenetes/awesome-kubernetes.git
synced 2026-07-12 18:00:37 +00:00
66 KiB
66 KiB
Helm Kubernetes Tool
!!! info "Architectural Context" Detailed reference for Helm Kubernetes Tool in the context of Architectural Foundations.
Cloud Native
Application Delivery
Design Patterns
Advanced Templating
- (2021) blog.flant.com: Making the most out of Helm templates 🌟 [ADVANCED LEVEL] [COMMUNITY-TOOL] — Advanced tutorial highlighting powerful features in Helm’s templating engine (Go templates/Sprig library). Outlines loops, conditional formatting, dictionary manipulation, and helper functions to reduce manifest duplication.
- (2021) itnext.io: Reference Other Values in Helm Chart Values File [COMMUNITY-TOOL] — Highlights an advanced strategy for referencing parameters dynamically within a single Helm values.yaml file. Reduces configuration duplication through strategic use of self-referencing YAML anchors or templated overrides.
Best Practices
- (2021) jfrog.com: Steering Straight with Helm Charts Best Practices 🌟 [COMMUNITY-TOOL] — Industry recommendations for designing robust Helm charts. Explores standard naming conventions, managing optional dependencies, versioning strategies (Semantic Versioning), and optimizing values files for enterprise-grade registries.
- (2020) codersociety.com: 13 Best Practices for using Helm [COMMUNITY-TOOL] — Curated list of 13 foundational design patterns and practices for Helm charts. Topics include semantic versioning compliance, clean separation of concerns within values files, and keeping dependencies decoupled.
HULL Library
- (2021) dev.to: HULL Tutorial 01: Introducing HULL, the Helm Universal Layer Library [ADVANCED LEVEL] [COMMUNITY-TOOL] — Practical introduction to HULL (Helm Universal Layer Library), a standardized, library-chart-driven mechanism to dramatically simplify Kubernetes manifest configuration without writing massive custom Go templates.
Library Charts
- (2021) itnext.io: Helm: reusable chart — named templates, and a generic chart for multiple applications [ADVANCED LEVEL] [COMMUNITY-TOOL] — Explores building a reusable helper chart that leverages named templates to configure generic patterns across diverse microservices deployments. Drastically minimizes copy-paste patterns in massive Kubernetes portfolios.
Umbrella Charts
- (2020) itnext.io: Helm 3 Umbrella Charts & Standalone Chart Image Tags — An Alternative Approach [ADVANCED LEVEL] [COMMUNITY-TOOL] — Investigates alternative structural topologies using Helm Umbrella Charts combined with dynamic standalone tags. Addresses the complexities of continuous microservices updates without redeploying massive, monolithic dependency trees.
Documentation Automation
- (2022) chart-doc-gen: Helm Chart Documentation Generator ⭐ 122 [GO CONTENT] 🌟🌟 [COMMUNITY-TOOL] — Command-line utility that extracts configuration variables directly from values.yaml to compile uniform Markdown files. Speeds up delivery by ensuring user manuals and codebases stay perfectly aligned.
- (2026) Frigate [DOCUMENTATION] [COMMUNITY-TOOL] — Open-source documentation generator specializing in extracting complex metadata profiles from Helm values files. Provides teams with structural consistency by eliminating manual developer intervention when writing chart readmes.
Helm Plugins
API Migration
- (2026) Helm mapkubeapis Plugin ⭐ 1035 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟 [LEGACY] — Fundamental operator utility that edits release metadata in-place to update deprecated or removed Kubernetes APIs. Prevents release locks and upgrade failures when cluster components transition to newer API versions.
Release Management
- (2022) JovianX/helm-release-plugin ⭐ 109 [GO CONTENT] 🌟🌟 [COMMUNITY-TOOL] — Utility command plugin allowing cluster administrators to inspect, unpack, and export deployment releases easily. Facilitates troubleshooting across multi-environment states and eases visual configuration comparisons.
Topology Visualization
- (2026) Helm Kanvas Snapshot ⭐ 43 [GO CONTENT] 🌟 [COMMUNITY-TOOL] — Integrates Meshery's visualization layer into Helm pipelines. Enables engineers to capture runtime topology models and visually document deployed resource layouts directly from active releases.
Operators
Helm Integration
- (2020) cloud.redhat.com: Application Management in Kubernetes Environments with Helm Charts and Kubernetes Operators [COMMUNITY-TOOL] — Contrasts and complements application packaging methods with Helm Charts versus the Kubernetes Operator Framework. Illustrates how developers choose Helm for simpler, template-based deployments and Operators for complex, stateful operations.
Package Management
Chart Validation
- (2021) Helm 3: Validating Helm Chart Values with JSON Schemas 🌟 [ADVANCED LEVEL] [COMMUNITY-TOOL] — Deep technical guide on leveraging JSON Schema definitions (
values.schema.json) to enforce parameter validation prior to execution. Mitigates run-time failures and schema mismatches in multi-tenant environments by validating configuration inputs during build time.
Demystifying
- (2020) youtube.com: Demystifying Helm 🌟 [COMMUNITY-TOOL] — Explanatory session demystifying Helm internals. Illustrates how manifest rendering works on the client-side and describes the storage of release history as Secrets inside target Kubernetes namespaces.
Helm
DevOps
- (2022) Delve into Helm: Advanced DevOps [ADVANCED LEVEL] [COMMUNITY-TOOL] — Deep-dive educational video analyzing advanced templating, customized hooks, and Helm execution patterns in Enterprise environments. Explains structural lifecycle hooks and complex value manipulation to secure production-ready application pipelines.
Documentation
- (2026) helm.sh [DOCUMENTATION] [COMMUNITY-TOOL] — Official documentation and getting started guide for Helm. Serves as the authoritative resource for understanding chart anatomy, template engines, and client commands, ensuring standardization in continuous integration pipelines.
Source Code
- (2026) ==GitHub: Helm, the Kubernetes Package Manager== ⭐ 29874 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟🌟🌟 [DE FACTO STANDARD] — Official Go implementation of the Helm client, acting as the package manager for Kubernetes. Helm manages complex application definitions through charts, providing repeatable deployments, in-place upgrades, and robust rollback capabilities.
Tutorials
- (2021) Helm and Kubernetes Tutorial - Introduction [COMMUNITY-TOOL] — Introductory video course establishing foundational Kubernetes packaging concepts. Covers basic chart configuration, deployment lifecycles, and initial client interactions to transition from manual manifests to structured releases.
- (2020) thoughtworks.com: Helm [COMMUNITY-TOOL] — A professional evaluation of Helm from ThoughtWorks Technology Radar. While earlier iterations (Helm v2) posed architectural concerns due to the elevated privileges of Tiller, Helm v3's client-only architecture secures its position as a stable choice for Kubernetes deployment standardization.
Helm Hooks
- (2021) rafay.co: Helm Chart Hooks Tutorial [COMMUNITY-TOOL] — Comprehensive breakdown of Helm lifecycle hooks (e.g., pre-install, post-upgrade). Explains how to coordinate prerequisite checks, execute database migrations, or trigger custom operations outside of standard deployment routines.
Helm Migration
- (2020) helm.sh: How to migrate from Helm v2 to Helm v3 [DOCUMENTATION] [COMMUNITY-TOOL] — Standardized blueprint detailing the technical steps to transition environments from Helm v2 to Helm v3. Focuses on state-store conversion (ConfigMaps/Secrets), Tiller cleanup, and avoiding release disruption during metadata migrations.
Introductory
- (2021) freecodecamp.org: What is a Helm Chart? A Tutorial for Kubernetes Beginners [COMMUNITY-TOOL] — Comprehensive beginner tutorial exploring Helm fundamentals. Translates Kubernetes packaging logic into relatable analogies and guides developers through editing templates and launching basic infrastructure releases.
- (2021) thedeveloperstory.com: Helm 101: Brief introduction to kubernetes package manager [COMMUNITY-TOOL] — Fundamental introduction outlining the role of Helm in managing the complexity of Kubernetes infrastructure. Discusses key files (values.yaml, templates directory) and common installation command sequences.
- (2021) mattias.engineer/courses/kubernetes/helm: Kubernetes-101: Helm 🌟 [COMMUNITY-TOOL] — Comprehensive instructional module exploring basic and intermediate Helm tasks. Integrates localized labs covering chart structuring, release revisions management, and customized CLI command execution.
- (2020) hackernoon.com: Kubernetes and Helm: A Deadly Combo to Help You Deploy with Ease [COMMUNITY-TOOL] — High-level overview of Helm's architecture and its role in scaling Kubernetes software rollouts. Walks developers through how template definitions replace raw YAML, reducing repetitive work and config drift across microservices.
- (2020) dev.to: Introduction to Helm 🌟 [COMMUNITY-TOOL] — A practical introduction outlining the foundational structure of Helm charts, releases, and CLI workflows. Discusses core mechanics of template compilation and value injection for developers new to Kubernetes package management.
Testing
Unit Testing
- (2021) blog.heyal.co.uk: How to unit-test your helm charts with Golang 🌟 [ADVANCED LEVEL] [COMMUNITY-TOOL] — Deep technical look into executing unit testing on Helm chart outputs using Go tests instead of simple bash scripts. Ensures template logic parses properly and conforms to runtime requirements prior to deploy.
Cloud Platforms
Azure AKS
Helm Integration (1)
- (2022) DevOps with Azure, Kubernetes, and Helm [COMMUNITY-TOOL] — Integration guide demonstrating the deployment of multi-tier applications onto Azure Kubernetes Service (AKS) using Helm. Clarifies Managed Identity setups and DevOps pipelines optimized for cloud-native workloads.
Continuous Delivery
GitOps
HashiCorp Waypoint
- (2021) learn.hashicorp.com: Deploy a Helm-based application automatically with GitOps ⭐ 4727 🌟🌟🌟🌟 [ENTERPRISE-STABLE] [GUIDE] — Practical guide deploying Helm-based software within HashiCorp Waypoint pipelines. Compares native Waypoint continuous operations with declarative GitOps reconciliations, establishing streamlined automation protocols.
Helm Integration (2)
- (2021) codefresh.io: Using Helm with GitOps 🌟 [COMMUNITY-TOOL] — Analyzes the synergies and friction points of matching the declarative GitOps model with Helm's transactional release engine. Recommends strategies for separating configuration definitions from package logic.
Red Hat OpenShift
- (2021) youtube: GitOps Guide to the Galaxy: Working with Helm [COMMUNITY-TOOL] — Video detailing best practices when pairing Helm with GitOps engines (such as Argo CD). Investigates template-rendering synchronization patterns, managing secret encryption, and maintaining single-source-of-truth states in git.
Helm Integration (3)
- (2022) Continuously delivering apps to Kubernetes using Helm [COMMUNITY-TOOL] — Visual and technical walkthrough illustrating the orchestration of continuous delivery models with Helm. Emphasizes declarative rollouts, blue-green strategy alignment, and handling configurations inside unified CI/CD systems.
Continuous Integration
CI-CD Pipelines
Jenkins
- (2021) Zero to Kubernetes CI/CD in 5 minutes with Jenkins and Helm [COMMUNITY-TOOL] — Demonstrates rapid bootstrap of a Jenkins-driven CI/CD workflow utilizing Helm charts for packaging. Showcases how automation systems leverage the Helm CLI to rapidly package, version, and deploy builds into target namespaces.
Enterprise Platforms
Red Hat OpenShift (1)
Certifications
- (2021) redhat.com: Red Hat OpenShift Certification extends support for Kubernetes-native technologies with Helm 🌟 [COMMUNITY-TOOL] — Press release outlining Red Hat's native support and certification paths for Helm charts in OpenShift. Reinforces Helm's status as a first-class citizen in Enterprise hybrid-cloud orchestration frameworks.
Microservices
- (2021) developers.redhat.com: Deploy Node.js applications to Red Hat OpenShift with Helm [COMMUNITY-TOOL] — Hands-on guide focusing on containerizing and deploying Node.js microservices to OpenShift 4 using Helm charts. Covers localized template customization and resource quota alignments for developer-driven environments.
Infrastructure
Cost Optimization
Temporary Environments
- (2021) dev.to: Helm Release Time-To-Live(TTL)⏳💀 for Temporary Environments [COMMUNITY-TOOL] — Outlines techniques to implement a TTL (Time-To-Live) mechanism for Helm releases. Crucial for optimizing cloud spend in ephemeral testing environments by garbage-collecting resources after pre-defined lifetimes.
Observability
Prometheus Integration
Metrics
- (2021) blog.knell.it: Making your Helm Chart observable for Prometheus [COMMUNITY-TOOL] — Explains how to embed ServiceMonitor or PodMonitor definitions natively into Helm templates. Simplifies application observability by automatically registering target resources for Prometheus scraping post-deployment.
Reliability
Post-Mortems
Deployment Failures
- (2021) dev.to/francoislp: Post-mortem: 1h30 downtime on a Saturday morning [ADVANCED LEVEL] [COMMUNITY-TOOL] — Real-world operational post-mortem detailing high-severity production downtime triggered by a silent failure in a Helm upgrade. Explains the critical importance of dry-runs, strict testing, and canary stages for chart deployment.
Security
Hardening
Helm Security
- (2021) rancher.com: Create Reproducible Security in Kubernetes with Helm 3 and Helm Charts [COMMUNITY-TOOL] — Practical guide discussing Helm 3 security baselines, image registry verification, and using secure defaults in charts. Addresses how declarative configurations align with modern threat model structures inside production networks.
- (2021) thenewstack.io: Applying Kubernetes Security Best Practices to Helm Charts 🌟 [COMMUNITY-TOOL] — Comprehensive security guide detailing structural techniques to audit and secure third-party Helm charts before production rollout. Covers network policies, security contexts, and container permission baselines.
Sysdig Standards
- (2021) sysdig.com: Helm security and best practices [COMMUNITY-TOOL] — Hardening guidelines detailing secure Helm usage. Discusses securing helm charts against common configuration risks, managing credentials in secret layers instead of source files, and verifying container images in pipeline states.
Vulnerabilities
Argo CD Security
- (2022) apiiro.com: Malicious Kubernetes Helm Charts can be used to steal sensitive information from Argo CD deployments [ADVANCED LEVEL] [COMMUNITY-TOOL] — Crucial security report highlighting vulnerabilities where malicious or compromised Helm charts exploit the template-rendering engine of GitOps systems (like Argo CD) to expose sensitive secrets or execute side-channel attacks.
CVE-2021-32690
- (2021) thenewstack.io: Upgrade Helm if You Don’t Want to Share Your Username and Password (Helm’s CVE-2021-32690) 🌟 [COMMUNITY-TOOL] — Critical analysis of Helm security vulnerability CVE-2021-32690. Investigates how auth credentials could be inadvertently leaked to third-party domains during chart installations, emphasizing immediate upgrades to safe client versions.
Cloud Native Architecture
Development Methodologies
Operator Perspectives
- (2021) opensource.com: What Kubernetes taught me about development [N/A CONTENT] [COMMUNITY-TOOL] — An architectural reflection detailing key developer-centric shifts encountered when adapting to Kubernetes environments. It explores paradigms like declarative APIs, container-first test loops, and how platform engineers must redefine application boundaries in microservice environments.
Kubernetes Tools
General Reference
- Automating Kubernetes Deployments with Helm Charts [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering Automating Kubernetes Deployments with Helm Charts in the Kubernetes Tools ecosystem.
- dzone: managing helm releases the gitops way [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering dzone: managing helm releases the gitops way in the Kubernetes Tools ecosystem.
- dzone: 15 useful helm chart tools [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering dzone: 15 useful helm chart tools in the Kubernetes Tools ecosystem.
- dzone: create install upgrade and rollback a helm chart - part 1 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering dzone: create install upgrade and rollback a helm chart - part 1 in the Kubernetes Tools ecosystem.
- dzone: create install upgrade and rollback a helm chart - part 2 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering dzone: create install upgrade and rollback a helm chart - part 2 in the Kubernetes Tools ecosystem.
- dzone: cicd with kubernetes and helm [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering dzone: cicd with kubernetes and helm in the Kubernetes Tools ecosystem.
- banzaicloud.com: Helm 3, the Good, the Bad and the Ugly [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering banzaicloud.com: Helm 3, the Good, the Bad and the Ugly in the Kubernetes Tools ecosystem.
- medium: Helm Chart — Development Guide 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium: Helm Chart — Development Guide 🌟 in the Kubernetes Tools ecosystem.
- medium: Multi-namespace Helm deploy in Kubernetes [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium: Multi-namespace Helm deploy in Kubernetes in the Kubernetes Tools ecosystem.
- daveops.xyz: Running DB migrations on Kubernetes with Helm [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering daveops.xyz: Running DB migrations on Kubernetes with Helm in the Kubernetes Tools ecosystem.
- mbbaig.blog: How to create custom Helm charts 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering mbbaig.blog: How to create custom Helm charts 🌟 in the Kubernetes Tools ecosystem.
- cncf.io: Quick application deployments on MicroK8s using Helm Charts [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering cncf.io: Quick application deployments on MicroK8s using Helm Charts in the Kubernetes Tools ecosystem.
- cncf.io: Add Java Agents to Existing Kubernetes and Helm Applications Instantly [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering cncf.io: Add Java Agents to Existing Kubernetes and Helm Applications Instantly in the Kubernetes Tools ecosystem.
- medium: Create Helm Charts to manage Kubernetes applications [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium: Create Helm Charts to manage Kubernetes applications in the Kubernetes Tools ecosystem.
- bridgecrew.io: Part 1: Top trends from analyzing the security posture of' open-source Helm charts [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering bridgecrew.io: Part 1: Top trends from analyzing the security posture of' open-source Helm charts in the Kubernetes Tools ecosystem.
- jasiek-petryk.medium.com: Setting up a private Helm chart repository on' GitHub [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering jasiek-petryk.medium.com: Setting up a private Helm chart repository on' GitHub in the Kubernetes Tools ecosystem.
- betterprogramming.pub: How To Continuously Test and Deploy Your Helm Charts' on Kubernetes Clusters Using Kind [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering betterprogramming.pub: How To Continuously Test and Deploy Your Helm Charts' on Kubernetes Clusters Using Kind in the Kubernetes Tools ecosystem.
- levelup.gitconnected.com: Helm 101 for Developers [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering levelup.gitconnected.com: Helm 101 for Developers in the Kubernetes Tools ecosystem.
- betterprogramming.pub: 6 Tips for Creating Helm Charts in Kubernetes Applications [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering betterprogramming.pub: 6 Tips for Creating Helm Charts in Kubernetes Applications in the Kubernetes Tools ecosystem.
- medium: Kubernetes Deployment using Helm Charts and Krane 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium: Kubernetes Deployment using Helm Charts and Krane 🌟 in the Kubernetes Tools ecosystem.
- bridgecrew.io: Applying Kubernetes security best practices to Helm charts [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering bridgecrew.io: Applying Kubernetes security best practices to Helm charts in the Kubernetes Tools ecosystem.
- medium: Test Helm Release in Production Environment with Zero Downtime' 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering ==medium: Test Helm Release in Production Environment with Zero Downtime==' 🌟 in the Kubernetes Tools ecosystem.
- hashicorp.com: Deploying Helm Apps to Kubernetes with Waypoint and GitOps [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering hashicorp.com: Deploying Helm Apps to Kubernetes with Waypoint and GitOps in the Kubernetes Tools ecosystem.
- medium.com/dailymotion: Deploying apps on multiple Kubernetes clusters with' Helm [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/dailymotion: Deploying apps on multiple Kubernetes clusters with' Helm in the Kubernetes Tools ecosystem.
- gennyallcroft.medium.com: Understanding Kubernetes deployments with Helm [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering gennyallcroft.medium.com: Understanding Kubernetes deployments with Helm in the Kubernetes Tools ecosystem.
- medium.com/codex: Helm Charts For Kubernetes Developers [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/codex: Helm Charts For Kubernetes Developers in the Kubernetes Tools ecosystem.
- medium.com/@paolo.gallina: How-to release Helm Charts maintaining your mental' health 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/@paolo.gallina: How-to release Helm Charts maintaining your mental' health 🌟 in the Kubernetes Tools ecosystem.
- devopslearners.com: How to Convert Helm Chart to Kubernetes YAML [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering devopslearners.com: How to Convert Helm Chart to Kubernetes YAML in the Kubernetes Tools ecosystem.
- mlepeshkin.medium.com: Automated Kubernetes deployment with Helm and additional' templating [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering mlepeshkin.medium.com: Automated Kubernetes deployment with Helm and additional' templating in the Kubernetes Tools ecosystem.
- blog.ediri.io: How To Unit Test Your Helm Charts [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering ==blog.ediri.io: How To Unit Test Your Helm Charts== in the Kubernetes Tools ecosystem.
- medium.com/@percenuage: My adventure with Helm as GitOps in a distributed' architecture [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering ==medium.com/@percenuage: My adventure with Helm as GitOps in a distributed' architecture== in the Kubernetes Tools ecosystem.
- medium.com/avmconsulting-blog: How to Deploy Applications using Helm in' Kubernetes |AWS| [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/avmconsulting-blog: How to Deploy Applications using Helm in' Kubernetes |AWS| in the Kubernetes Tools ecosystem.
- medium.com/tech-chronicles: Helm tests [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/tech-chronicles: Helm tests in the Kubernetes Tools ecosystem.
- xbery.medium.com: Deploy helm charts using Terraform module 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering xbery.medium.com: Deploy helm charts using Terraform module 🌟 in the Kubernetes Tools ecosystem.
- medium.com/codex: Simplifying Kubernetes Deployments With Helm Package' Manager 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering ==medium.com/codex: Simplifying Kubernetes Deployments With Helm Package' Manager== 🌟 in the Kubernetes Tools ecosystem.
- medium.com/geekculture: Helm — Advanced Commands 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering ==medium.com/geekculture: Helm — Advanced Commands== 🌟 in the Kubernetes Tools ecosystem.
- levelup.gitconnected.com: Helm—Named Templates [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering levelup.gitconnected.com: Helm—Named Templates in the Kubernetes Tools ecosystem.
- faun.pub: Helm — Template Actions, Functions, and Pipelines 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering faun.pub: Helm — Template Actions, Functions, and Pipelines 🌟 in the Kubernetes Tools ecosystem.
- shipmight.com: Understanding Helm upgrade flags [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering shipmight.com: Understanding Helm upgrade flags in the Kubernetes Tools ecosystem.
- blog.devops.dev: Stop cloning helm charts! Enough! 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering ==blog.devops.dev: Stop cloning helm charts! Enough!== 🌟 in the Kubernetes Tools ecosystem.
- medium.com/kubeshop-i: Monokle, Helm & Quality Kubernetes Deployments [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/kubeshop-i: Monokle, Helm & Quality Kubernetes Deployments in the Kubernetes Tools ecosystem.
- medium.com/gquiman: K8Studio, Helm and Kubernetes management [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/gquiman: K8Studio, Helm and Kubernetes management in the Kubernetes Tools ecosystem.
- blog.devops.dev: Hosting Your Own Helm Chart on GitHub with Chart Releaser [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering blog.devops.dev: Hosting Your Own Helm Chart on GitHub with Chart Releaser in the Kubernetes Tools ecosystem.
- faun.pub: Package and Deploy Your Application Using Helm Chart [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering faun.pub: Package and Deploy Your Application Using Helm Chart in the Kubernetes Tools ecosystem.
- medium.com/@badawekoo: Helm theory, demo and commands you need to know! [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/@badawekoo: Helm theory, demo and commands you need to know! in the Kubernetes Tools ecosystem.
- medium.com: Helm Your Kubernetes Application [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com: Helm Your Kubernetes Application in the Kubernetes Tools ecosystem.
- medium.com/linux-shots: Use PostgreSQL database as backend storage for helm [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/linux-shots: Use PostgreSQL database as backend storage for helm in the Kubernetes Tools ecosystem.
- tratnayake.dev: Using Helm To Include All Files From A Directory In-line [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering tratnayake.dev: Using Helm To Include All Files From A Directory In-line in the Kubernetes Tools ecosystem.
- fenyuk.medium.com: Helm for Kubernetes. Datree for keeping cluster secure' and healthy 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering fenyuk.medium.com: Helm for Kubernetes. Datree for keeping cluster secure' and healthy 🌟 in the Kubernetes Tools ecosystem.
- fenyuk.medium.com: Helm for Kubernetes. GitOps with Argo CD 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering fenyuk.medium.com: Helm for Kubernetes. GitOps with Argo CD 🌟 in the Kubernetes Tools ecosystem.
- medium.com/geekculture: HELM — How Release Information is Stored [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/geekculture: HELM — How Release Information is Stored in the Kubernetes Tools ecosystem.
- levelup.gitconnected.com: Helm — Data Sharing Between Parent and Child Chart [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering levelup.gitconnected.com: Helm — Data Sharing Between Parent and Child Chart in the Kubernetes Tools ecosystem.
- blog.searce.com: Transform Kubernetes Manifests into Helm Chart [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering blog.searce.com: Transform Kubernetes Manifests into Helm Chart in the Kubernetes Tools ecosystem.
- medium.com/geekculture: Helm Chart Wait for All Dependencies Before Starting' Kubernetes Pods [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/geekculture: Helm Chart Wait for All Dependencies Before Starting' Kubernetes Pods in the Kubernetes Tools ecosystem.
- medium.com/@marc.khouzam: Shell completion for plugins with Helm 3.8 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/@marc.khouzam: Shell completion for plugins with Helm 3.8 in the Kubernetes Tools ecosystem.
- medium: Highway to Helm: How to efficiently manage chart sources [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium: Highway to Helm: How to efficiently manage chart sources in the Kubernetes Tools ecosystem.
- medium.com/geekculture: K8s — Helm Dashboard [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium.com/geekculture: K8s — Helm Dashboard in the Kubernetes Tools ecosystem.
- levelup.gitconnected.com: Introduction to Helm Dashboard [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering levelup.gitconnected.com: Introduction to Helm Dashboard in the Kubernetes Tools ecosystem.
- Kubecrt - Convert HELM charts to kubernetes resources 🌟 [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering Kubecrt - Convert HELM charts to kubernetes resources 🌟 in the Kubernetes Tools ecosystem.
- linuxadvise.com: Helmfile - Next Level to manage your helm Charts [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering linuxadvise.com: Helmfile - Next Level to manage your helm Charts in the Kubernetes Tools ecosystem.
- medium: Gitops using Helmsman to apply Helm Charts to k8s [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering medium: Gitops using Helmsman to apply Helm Charts to k8s in the Kubernetes Tools ecosystem.
- abhaypore.medium.com: Migrate your manifest yaml files into Helm Chart [COMMUNITY-TOOL] — A curated technical resource and architectural guide covering abhaypore.medium.com: Migrate your manifest yaml files into Helm Chart in the Kubernetes Tools ecosystem.
Multi-Cluster Management
Project Sveltos
Validation Tools
- (2025) github.com/projectsveltos: sveltosctl ⭐ 36 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟 [COMMUNITY-TOOL] — The CLI dashboard for Project Sveltos. It specializes in executing dry-runs and drift validations on declarative ClusterProfiles to ensure configuration validity prior to propagating resources to remote edge clusters.
Networking and Ingress
Ingress Controllers
HAProxy Deployments
- (2026) artifacthub.io: Official Helm charts for HAProxy and the HAProxy Kubernetes Ingress Controller on Artifact Hub 🌟 [YAML CONTENT] [COMMUNITY-TOOL] — The official, production-grade Helm packages for HAProxy load balancers and Ingress Controllers. They offer high-performance routing, custom security profiles, proxy-protocol support, and robust SSL/TLS termination configs suitable for web traffic at scale.
Observability (1)
Scraping and Exporters
Kubernetes Exporters
- (2023) ==sstarcher/helm-exporter== ⭐ 301 [GO CONTENT] 🌟🌟🌟🌟🌟 [DE FACTO STANDARD] — A Prometheus exporter designed to surface real-time metrics for deployed Helm releases. It monitors charts metadata, tracking status, revisions, and health states across namespaces to empower advanced alert rules.
Observability and Monitoring
Prometheus Ecosystem
Helm Deployments
- (2026) prometheus-community.github.io: Prometheus Community Kubernetes Helm Charts 🌟 [YAML CONTENT] [COMMUNITY-TOOL] — The official Prometheus community Helm charts registry, housing the essential kube-prometheus-stack. This remains the absolute industry standard for managing Prometheus, Grafana dashboards, Alertmanager definitions, and metrics-collector sidecars.
Platform Engineering
Application Delivery (1)
Catalog UI
- (2025) ==kubeapps.dev 🌟== [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟🌟🌟 [DE FACTO STANDARD] — A web-based control plane for deploying and managing packaged cloud-native applications on Kubernetes. Provides visual tooling to interact with Helm charts, Operators, and Carvel packages with integrated RBAC and multi-cluster deployment scopes.
Kubernetes GitOps and Packaging
Alternative Deployment Engines
- (2026) Nelm: A Helm Alternative for Kubernetes Deployments ⭐ 1083 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟🌟 [ENTERPRISE-STABLE] — A high-performance deployment engine embedded in Werf that provides a drop-in, robust alternative to standard Helm tracking. It addresses Helm's native state validation limitations by offering deep, real-time resource validation and status monitoring.
Auditing and Maintenance
- (2025) github: Nova 🌟 ⭐ 864 [GO CONTENT] 🌟🌟🌟 [COMMUNITY-TOOL] — A critical cluster auditing utility that proactively scans running environments for outdated, insecure, or orphaned Helm releases. It cross-references current cluster deployments against upstream registries to alert operators of crucial patch requirements.
- (2024) helm-changelog: Create changelogs for Helm Charts, based on git history ⭐ 43 [GO CONTENT] 🌟 [COMMUNITY-TOOL] — A smart CLI helper designed to parse git commit logs and automatically compile detailed changelogs for Helm releases. Ideal for maintaining human-readable release histories without manual maintenance bottlenecks during major release cycles.
Best Practices (1)
- (2022) boxunix.com: Developer’s Guide to Writing a Good Helm Chart [YAML CONTENT] [COMMUNITY-TOOL] [GUIDE] — A comprehensive authoring guide establishing best practices in Helm chart architecture. Topics include variable scoping, values encapsulation patterns, schema validation structures, and managing complex multi-service subchart dependencies cleanly.
Chart Discovery
- (2026) ==Artifact Hub 🌟== [GO CONTENT] 🌟🌟🌟🌟🌟 [DE FACTO STANDARD] — The authoritative, CNCF-hosted decentralized web hub designed for discovering, installing, and monitoring cloud-native packages. It aggregates active Helm charts, Kubernetes operators, Tekton tasks, and OCI artifacts with comprehensive security and maintenance tracking.
- (2020) codeengineered.com: 4 Places To Find Helm Charts [N/A CONTENT] [COMMUNITY-TOOL] — A historical landscape overview detailing key public repositories and search indexes for sourcing verified Helm charts. This serves as a foundational reference for understanding the historical transition from disparate registries to modern unified catalogs.
- (2020) hub.helm.sh 🌟 [GO CONTENT] [LEGACY] — The legacy centralized search hub for locating community Helm charts before the packaging index consolidated. This resource is completely deprecated and has been succeeded by the modern, CNCF-maintained decentralized platform, Artifact Hub.
Chart Publishing
- (2022) harness.io: Tutorial: Turning a GitHub Repo Into a Helm Chart Repo [YAML CONTENT] [COMMUNITY-TOOL] [GUIDE] — A practical hands-on tutorial demonstrating how to turn a standard GitHub repository into a fully compliant Helm Chart registry. It outlines automating publishing workflows utilizing GitHub Pages, Chart Releaser Actions, and package distribution.
Chart Repositories
- (2026) Bitnami Helm Charts [YAML CONTENT] [COMMUNITY-TOOL] — The industry-standard, production-hardened suite of application and middleware charts maintained by Bitnami. It provides container security patches, non-root execution profiles, and reliable high-availability structures for standard database, web server, and cache backends.
- (2024) JFrog ChartCenter [N/A CONTENT] [LEGACY] — A legacy public Helm registry launched by JFrog to provide security insights, dependency maps, and automated vulnerability scanning for Helm packages. It serves as a historical architectural reference for secure dependency-chain structures.
- (2020) New Location For Stable and Incubator Charts [N/A CONTENT] [LEGACY] — The landmark Helm blog announcement detailing the official deprecation and migration path of the legacy 'stable' and 'incubator' Helm repositories. This resource documents the organizational move toward decentralized chart ownership and independent project hosting.
Compliance and Validation
- (2025) redhat-certification: chart-verifier: Rules based tool to certify Helm charts' 🌟 ⭐ 61 [GO CONTENT] 🌟🌟 [COMMUNITY-TOOL] — Red Hat's policy-enforcement checker built to certify Helm charts for enterprise deployment suitability on OpenShift platforms. It verifies that packaging templates align with platform standards, security models, and compliance benchmarks.
DevOps Pipelines
- (2025) Codecentric Jenkins 🌟 ⭐ 733 [YAML CONTENT] 🌟🌟🌟 [COMMUNITY-TOOL] — An active, community-maintained collection of high-quality Helm charts, featuring a robust configuration path for DevOps tooling like Jenkins. It provides clean, production-ready, security-hardened manifests optimized for enterprise use.
Helm Documentation
- (2025) helm-docs ⭐ 1745 [GO CONTENT] 🌟🌟🌟🌟 [ENTERPRISE-STABLE] — An automated utility designed to generate clear Markdown documentation from Helm chart metadata and schema structures. By analyzing values.yaml schema annotations, it produces clean, standardized configuration tables. This ensures chart configurations remain self-documenting and structurally valid within CI/CD pipelines.
Helm Plugins and Extensibility
- (2026) Helm Diff Plugin 🌟 ⭐ 3447 [GO CONTENT] 🌟🌟🌟🌟 [ENTERPRISE-STABLE] — The essential Helm plugin that compares proposed templates with running cluster releases to output an exact color-coded unified diff. A foundational safety gate for continuous delivery, mitigating unexpected state drifts during upgrades.
- (2022) datree.io: How to build a Helm plugin in minutes [MARKDOWN CONTENT] [DOCUMENTATION] [COMMUNITY-TOOL] — A developer-oriented guide outlining how to design, build, and distribute custom Helm plugins. The tutorial covers the CLI plugin contract, execution hook hooks, environment runtime variables, and best practices for extending Helm with customized subcommands.
Helm Templates
- (2025) HULL ⭐ 288 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟 [COMMUNITY-TOOL] — The Helm Utility Library Layer (HULL) is an innovative templating library designed to drastically reduce boilerplate code. It allows platform engineers to define Kubernetes resources declaratively within JSON/YAML schemas, minimizing redundant YAML scripting.
Helm Visualization and UI
- (2025) github.com/komodorio/helm-dashboard 🌟 ⭐ 5716 [GO CONTENT] 🌟🌟🌟🌟 [ENTERPRISE-STABLE] — A real-time web UI dashboard tailored for managing, upgrading, and viewing Helm releases. It addresses the visibility gap for platform operators by facilitating live drift visualization, schema validation, and multi-version revision comparisons directly from a user-friendly browser interface.
Java Microservices
- (2022) openshift.com: Introducing the Quarkus Helm Chart [N/A CONTENT] [COMMUNITY-TOOL] — An introduction detailing the design of the Quarkus Helm Chart, optimized for cloud-native Java microservices. It highlights native compiling integrations, GraalVM deployment profiles, and how to harness OpenShift pipelines for highly efficient container bootstrapping.
Legacy Charts
- (2020) ==Jenkins== ⭐ 15424 [YAML CONTENT] 🌟🌟🌟🌟🌟 [DE FACTO STANDARD] [LEGACY] — The deprecated stable Helm chart repository for Jenkins. It is strongly recommended to avoid this legacy version, as active development and security patches have transitioned exclusively to the official Jenkins community repository on Artifact Hub.
Legacy Utilities
- (2021) github.com/mumoshu/helm-x: Helm X Plugin ⭐ 178 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟 [EMERGING] — An experimental Helm plugin developed to extend standard chart templates with custom scripting functions and enhanced lifecycle control. This project is now unmaintained, serving purely as a design blueprint.
- (2021) maorfr/helm-backup: Helm Backup Plugin ⭐ 83 [GO CONTENT] 🌟🌟 [COMMUNITY-TOOL] — An early state backup plugin designed to preserve localized copies of active Helm releases. Modern declarative GitOps frameworks (such as Argo CD or Flux) have made manual stateful backups obsolete.
- (2021) Kubecrt ⭐ 113 [GO CONTENT] 🌟 [LEGACY] — An archived, early-stage conversion utility built to convert Helm charts into raw Kubernetes manifests. This project has been fully superseded by standard native capabilities like 'helm template' and is preserved solely as a historical reference of early declarative rendering strategies.
- (2019) github.com/jkosik: helm-decomposer [PYTHON CONTENT] [LEGACY] — An archived utility that parsed static Kubernetes manifests to automatically generate modular Helm charts. Unmaintained for several years, it serves as a legacy proof-of-concept for automated chart generation.
Lifecycle Hooks
- (2020) itnext.io: Database migrations on Kubernetes using Helm hooks [YAML CONTENT] [COMMUNITY-TOOL] — A technical deep-dive demonstrating how to manage database schema migrations safely utilizing Helm lifecycle hooks. It explores configuring Job containers with pre-install and pre-upgrade triggers to prevent app routing before schema synchronizations complete.
Multi-Chart Orchestration
- (2026) ==github.com/helmfile/helmfile== ⭐ 5136 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟🌟🌟 [DE FACTO STANDARD] — The premier declarative orchestrator for multi-chart environments. Helmfile allows infrastructure-as-code developers to build multi-environment states, map release hierarchies, automate parameter layering, and enforce GitOps deployment sequences seamlessly.
- (2025) Helmsman: Helm Charts as Code 🌟 ⭐ 1498 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟🌟 [ENTERPRISE-STABLE] [LEGACY] — An enterprise-grade, GitOps-friendly engine for declaring Helm charts as code. By monitoring desired state files, it automates lifecycle tasks including installations, cross-cluster upgrades, namespace setup, and purging deprecated releases.
- (2026) helmwave/helmwave ⭐ 886 [GO CONTENT] [ADVANCED LEVEL] 🌟🌟🌟 [EMERGING] — An emerging orchestrator implementing a 'Docker Compose' deployment feel for Helm charts. Featuring parallel execution plans, strict dependency resolution, and declarative configs, it offers platform teams a robust multi-chart orchestration tool.
Orchestration Utilities
- (2021) github: Kubernetes Deployment Orchestrator ⭐ 11 [GO CONTENT] [ADVANCED LEVEL] 🌟 [EMERGING] [LEGACY] — An archived, experimental orchestrator developed by SAP to coordinate complex Helm releases and dependency chains across large multi-tenant landscapes. Kept strictly as a historic design blueprint for modular platform workflows.
Secrets Management
- (2024) tellerops/helm-teller ⭐ 69 [GO CONTENT] 🌟🌟 [COMMUNITY-TOOL] — A highly specialized security plugin that interfaces with vault and KMS solutions to fetch secret values dynamically during deployment runtime. It eliminates the risk of committing sensitive configuration details to public code repositories.
Security and Auditing
- (2023) helm-scanner [GO CONTENT] [COMMUNITY-TOOL] — A lightweight template vulnerability scanner that evaluates Helm manifests for potential security drift, secrets leaks, and misconfigurations prior to deployment. Often integrated early in pipeline testing stages.
Security and Compliance
Policy Enforcement
Datree Integration
- (2022) aws.amazon.com: Preventing Kubernetes misconfigurations using Datree [N/A CONTENT] [COMMUNITY-TOOL] — An AWS technical write-up detailing the configuration of Datree policies inside Amazon EKS clusters to catch security and configuration drift. It details automated testing strategies to block misconfigured resource manifests at pre-commit and pipeline execution gates.
💡 Explore Related: Demos | Kubernetes | Cheatsheets