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 1.0.0 (latest)
1.0.0
Created 26 January 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
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 "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dk.kmd.helm.chart.publish:helm-chart-publisher:1.0.0")
}
}
apply(plugin = "dk.kmd.helm.chart.publish")
Using the plugins DSL:
plugins {
id "dk.kmd.helm.chart.publish" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dk.kmd.helm.chart.publish:helm-chart-publisher:1.0.0"
}
}
apply plugin: "dk.kmd.helm.chart.publish"