dk.kmd.helm.chart.publish
Owner: KMD Research and Development
Helm chart release plugin that uses git repositories (GitHub for example) as a helm chart repository.
https://github.com/r-d-kmd/gradle-helm-chart-publisher
Sources: https://github.com/r-d-kmd/gradle-helm-chart-publisher
Version 0.34.3
0.34.3
Created 30 November 2020.
Helm chart publish plugin using git repositories (GitHub for example) as a helm chart repository.
Using the plugins DSL:
plugins {
id("dk.kmd.helm.chart.publish") version "0.34.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dk.kmd.helm.chart.publish:helm-chart-publisher:0.34.3")
}
}
apply(plugin = "dk.kmd.helm.chart.publish")
Using the plugins DSL:
plugins {
id "dk.kmd.helm.chart.publish" version "0.34.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dk.kmd.helm.chart.publish:helm-chart-publisher:0.34.3"
}
}
apply plugin: "dk.kmd.helm.chart.publish"