org.unbroken-dome.helm-releases
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 0.4.4
0.4.4
Created 30 September 2019.
A suite of Gradle plugins for building, publishing and managing Helm charts.
Using the plugins DSL:
plugins {
id("org.unbroken-dome.helm-releases") version "0.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.unbroken-dome.gradle-plugins.helm:gradle-helm-plugin:0.4.4")
}
}
apply(plugin = "org.unbroken-dome.helm-releases")
Using the plugins DSL:
plugins {
id "org.unbroken-dome.helm-releases" version "0.4.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.unbroken-dome.gradle-plugins.helm:gradle-helm-plugin:0.4.4"
}
}
apply plugin: "org.unbroken-dome.helm-releases"