This is a suite of Gradle plugins for building, publishing and managing Helm charts.
ℹ️
|
Starting with version 1.0.0, the plugins require Helm 3.+. |
-
Gradle task types for common Helm CLI commands
-
Build, package and publish Helm charts using a declarative Gradle DSL
-
Resolve placeholders like
${chartVersion}
from chart source files before packaging -
Resolve dependencies between charts using Gradle artifact dependencies
-
Install, upgrade and uninstall releases to/from a Kubernetes cluster
-
Gradle 5.2 or higher
-
JDK 1.8 or higher (for running Gradle)
-
Helm command-line client 3.+
Apply the org.unbroken-dome.helm
plugin to your Gradle project:
plugins {
id 'org.unbroken-dome.helm' version '1.3.0'
}
Put your Helm chart sources into src/main/helm
:
📂 (project root) 📂 src 📂 main 📂 helm 📂 templates 📄 ... 📄 Chart.yaml 📄 values.yaml
Use the helmPackage
task to build your chart.