org.unbroken-dome.helm-commands
Owner: Till Krullmann
A suite of Gradle plugins for building, publishing and managing Helm charts.
https://github.com/unbroken-dome/gradle-helm-plugin
Sources: https://github.com/unbroken-dome/gradle-helm-plugin
Version 2.0.0 (latest)
2.0.0
Created 22 August 2023.
A plugin to execute Helm commands from Gradle. This serves as the basis for other Helm-related plugins. Usually you want to use the org.unbroken-dome.helm plugin instead.
Using the plugins DSL:
plugins {
id("org.unbroken-dome.helm-commands") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.unbroken-dome.gradle-plugins.helm:helm-plugin:2.0.0")
}
}
apply(plugin = "org.unbroken-dome.helm-commands")
Using the plugins DSL:
plugins {
id "org.unbroken-dome.helm-commands" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.unbroken-dome.gradle-plugins.helm:helm-plugin:2.0.0"
}
}
apply plugin: "org.unbroken-dome.helm-commands"