Search Gradle plugins

io.github.bullshit.helmng-commands

Owner: bullshit

Use Helm CLI commands directly as tasks, without any of the declarative DSL that the helm plugin offers.

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 Helm CLI commands directly as tasks, without any of the declarative DSL that the helm plugin offers.

Using the plugins DSL:

plugins {
  id("io.github.bullshit.helmng-commands") 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-plugin:0.1.0")
  }
}

apply(plugin = "io.github.bullshit.helmng-commands")

Using the plugins DSL:

plugins {
  id "io.github.bullshit.helmng-commands" 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-plugin:0.1.0"
  }
}

apply plugin: "io.github.bullshit.helmng-commands"

Learn how to apply plugins to subprojects