<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Helm on Producthunt daily</title>
        <link>https://producthunt.programnotes.cn/en/tags/helm/</link>
        <description>Recent content in Helm on Producthunt daily</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <lastBuildDate>Fri, 31 Oct 2025 15:27:26 +0800</lastBuildDate><atom:link href="https://producthunt.programnotes.cn/en/tags/helm/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>helm</title>
        <link>https://producthunt.programnotes.cn/en/p/helm/</link>
        <pubDate>Fri, 31 Oct 2025 15:27:26 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/helm/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1542758554-f3aab709b0da?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NjE4OTU2MzZ8&amp;ixlib=rb-4.1.0" alt="Featured image of post helm" /&gt;&lt;h1 id=&#34;helmhelm&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;helm/helm&lt;/a&gt;
&lt;/h1&gt;&lt;h1 id=&#34;helm&#34;&gt;Helm
&lt;/h1&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm/actions?workflow=release&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://github.com/helm/helm/workflows/release/badge.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Build Status&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://goreportcard.com/report/helm.sh/helm/v4&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://goreportcard.com/badge/helm.sh/helm/v4&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Go Report Card&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://pkg.go.dev/helm.sh/helm/v4&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/static/v1?label=godoc&amp;amp;message=reference&amp;amp;color=blue&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;GoDoc&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://bestpractices.coreinfrastructure.org/projects/3131&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://bestpractices.coreinfrastructure.org/projects/3131/badge&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;CII Best Practices&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://scorecard.dev/viewer/?uri=github.com/helm/helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://api.scorecard.dev/projects/github.com/helm/helm/badge&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;OpenSSF Scorecard&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://insights.linuxfoundation.org/project/helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://insights.production.lfx.dev/api/badge/health-score?project=helm&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;LFX Health Score&#34;
	
	
&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources.&lt;/p&gt;
&lt;p&gt;Use Helm to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Find and use &lt;a class=&#34;link&#34; href=&#34;https://artifacthub.io/packages/search?kind=0&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;popular software packaged as Helm Charts&lt;/a&gt; to run in Kubernetes&lt;/li&gt;
&lt;li&gt;Share your own applications as Helm Charts&lt;/li&gt;
&lt;li&gt;Create reproducible builds of your Kubernetes applications&lt;/li&gt;
&lt;li&gt;Intelligently manage your Kubernetes manifest files&lt;/li&gt;
&lt;li&gt;Manage releases of Helm packages&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;helm-in-a-handbasket&#34;&gt;Helm in a Handbasket
&lt;/h2&gt;&lt;p&gt;Helm is a tool that streamlines installing and managing Kubernetes applications.
Think of it like apt/yum/homebrew for Kubernetes.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Helm renders your templates and communicates with the Kubernetes API&lt;/li&gt;
&lt;li&gt;Helm runs on your laptop, CI/CD, or wherever you want it to run.&lt;/li&gt;
&lt;li&gt;Charts are Helm packages that contain at least two things:
&lt;ul&gt;
&lt;li&gt;A description of the package (&lt;code&gt;Chart.yaml&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;One or more templates, which contain Kubernetes manifest files&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Charts can be stored on disk, or fetched from remote chart repositories
(like Debian or RedHat packages)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;helm-development-and-stable-versions&#34;&gt;Helm Development and Stable Versions
&lt;/h2&gt;&lt;p&gt;Helm v4 is currently under development on the &lt;code&gt;main&lt;/code&gt; branch. This is unstable and the APIs within the Go SDK and at the command line are changing.
Helm v3 (current stable) is maintained on the &lt;code&gt;dev-v3&lt;/code&gt; branch. APIs there follow semantic versioning.&lt;/p&gt;
&lt;h2 id=&#34;install&#34;&gt;Install
&lt;/h2&gt;&lt;p&gt;Binary downloads of the Helm client can be found on &lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm/releases/latest&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;the Releases page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Unpack the &lt;code&gt;helm&lt;/code&gt; binary and add it to your PATH and you are good to go!&lt;/p&gt;
&lt;p&gt;If you want to use a package manager:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://brew.sh/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Homebrew&lt;/a&gt; users can use &lt;code&gt;brew install helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://chocolatey.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Chocolatey&lt;/a&gt; users can use &lt;code&gt;choco install kubernetes-helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://learn.microsoft.com/en-us/windows/package-manager/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Winget&lt;/a&gt; users can use &lt;code&gt;winget install Helm.Helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://scoop.sh/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Scoop&lt;/a&gt; users can use &lt;code&gt;scoop install helm&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://snapcraft.io/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Snapcraft&lt;/a&gt; users can use &lt;code&gt;snap install helm --classic&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://flox.dev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Flox&lt;/a&gt; users can use &lt;code&gt;flox install kubernetes-helm&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To rapidly get Helm up and running, start with the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs/intro/quickstart/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Quick Start Guide&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;See the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs/intro/install/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;installation guide&lt;/a&gt; for more options,
including installing pre-releases.&lt;/p&gt;
&lt;h2 id=&#34;docs&#34;&gt;Docs
&lt;/h2&gt;&lt;p&gt;Get started with the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs/intro/quickstart/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Quick Start guide&lt;/a&gt; or plunge into the &lt;a class=&#34;link&#34; href=&#34;https://helm.sh/docs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;complete documentation&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;roadmap&#34;&gt;Roadmap
&lt;/h2&gt;&lt;p&gt;The &lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/helm/milestones&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Helm roadmap uses GitHub milestones&lt;/a&gt; to track the progress of the project.&lt;/p&gt;
&lt;p&gt;The development of Helm v4 is currently happening on the &lt;code&gt;main&lt;/code&gt; branch while the development of Helm v3, the stable branch, is happening on the &lt;code&gt;dev-v3&lt;/code&gt; branch. Changes should be made to the &lt;code&gt;main&lt;/code&gt; branch prior to being added to the &lt;code&gt;dev-v3&lt;/code&gt; branch so that all changes are carried along to Helm v4.&lt;/p&gt;
&lt;h2 id=&#34;community-discussion-contribution-and-support&#34;&gt;Community, discussion, contribution, and support
&lt;/h2&gt;&lt;p&gt;You can reach the Helm community and developers via the following channels:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Kubernetes Slack&lt;/a&gt;:
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com/messages/helm-users&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#helm-users&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com/messages/helm-dev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#helm-dev&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://kubernetes.slack.com/messages/charts&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#charts&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Mailing List:
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://lists.cncf.io/g/cncf-helm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Helm Mailing List&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Developer Call: Thursdays at 9:30-10:00 Pacific (&lt;a class=&#34;link&#34; href=&#34;https://github.com/helm/community/blob/master/communication.md#meetings&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;meeting details&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;contribution&#34;&gt;Contribution
&lt;/h3&gt;&lt;p&gt;If you&amp;rsquo;re interested in contributing, please refer to the &lt;a class=&#34;link&#34; href=&#34;CONTRIBUTING.md&#34; &gt;Contributing Guide&lt;/a&gt; &lt;strong&gt;before submitting a pull request&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&#34;code-of-conduct&#34;&gt;Code of conduct
&lt;/h3&gt;&lt;p&gt;Participation in the Helm community is governed by the &lt;a class=&#34;link&#34; href=&#34;code-of-conduct.md&#34; &gt;Code of Conduct&lt;/a&gt;.&lt;/p&gt;
</description>
        </item>
        
    </channel>
</rss>
