搜索 Gradle 插件

io.github.bullshit.helmng-releases

所有者: bullshit

使用此插件管理远程 Kubernetes 集群上的 Helm 发布(安装/升级/卸载)。

https://github.com/bullshit/gradle-helmng-plugin

来源: https://github.com/bullshit/gradle-helmng-plugin

版本 0.1.0 (最新版)

0.1.0

创建于 2023 年 4 月 7 日。

使用此插件管理远程 Kubernetes 集群上的 Helm 发布(安装/升级/卸载)。

使用 plugins DSL

plugins {
  id("io.github.bullshit.helmng-releases") version "0.1.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.bullshit.gradle-plugins.helm:helm-releases-plugin:0.1.0")
  }
}

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

使用 plugins DSL

plugins {
  id "io.github.bullshit.helmng-releases" version "0.1.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.bullshit.gradle-plugins.helm:helm-releases-plugin:0.1.0"
  }
}

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

了解如何应用插件到子项目