io.github.bullshit.helmng-releases
Owner: bullshit
Use this plugin to manage Helm releases (install/upgrade/uninstall) on a remote Kubernetes cluster.
https://github.com/bullshit/gradle-helmng-plugin
Sources: https://github.com/bullshit/gradle-helmng-plugin
Version 0.1.0 (latest)
0.1.0
Created 07 April 2023.
Use this plugin to manage Helm releases (install/upgrade/uninstall) on a remote Kubernetes cluster.
Using the plugins DSL:
plugins {
id("io.github.bullshit.helmng-releases") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.bullshit.gradle-plugins.helm:helm-releases-plugin:0.1.0")
}
}
apply(plugin = "io.github.bullshit.helmng-releases")
Using the plugins DSL:
plugins {
id "io.github.bullshit.helmng-releases" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.bullshit.gradle-plugins.helm:helm-releases-plugin:0.1.0"
}
}
apply plugin: "io.github.bullshit.helmng-releases"