8000 GitHub - jigga/gradle-helm-plugin: A Gradle plugin for building, publishing and managing Helm charts.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jigga/gradle-helm-plugin

 
 

Repository files navigation

Gradle Helm Plugin

com.citi.helm?versionPrefix=2.1

This is a suite of Gradle plugins for building, publishing and managing Helm charts.

Features

  • 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

Requirements

  • Gradle 7 or higher

  • JDK 1.8 or higher (for running Gradle)

  • Helm command-line client 3.+

Quick Start

Apply the com.citi.helm plugin to your Gradle project:

build.gradle
plugins {
    id 'com.citi.helm' version '2.1.0'
}
build.gradle.kts
plugins {
    id("com.citi.helm") version "2.1.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.

Further Documentation

About

A Gradle plugin for building, publishing and managing Helm charts.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Kotlin 100.0%
0