io.github.mehmetsalgar.helm-publish
Owner: Mehmet Salgar
A suite of Gradle plugins for building, publishing and managing Helm charts.
https://github.com/mehmetsalgar/gradle-helm-plugin
Sources: https://github.com/mehmetsalgar/gradle-helm-plugin
Version 1.0.5 (latest)
1.0.5
Created 09 February 2023.
A suite of Gradle plugins for building, publishing and managing Helm charts.
Using the plugins DSL:
plugins {
id("io.github.mehmetsalgar.helm-publish") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.mehmetsalgar.gradle-plugins.helm:helm-publish-plugin:1.0.5")
}
}
apply(plugin = "io.github.mehmetsalgar.helm-publish")
Using the plugins DSL:
plugins {
id "io.github.mehmetsalgar.helm-publish" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.mehmetsalgar.gradle-plugins.helm:helm-publish-plugin:1.0.5"
}
}
apply plugin: "io.github.mehmetsalgar.helm-publish"