uk.co.boothen.gradle.kubectl
Owner: Matt Garner
Kubectl Gradle plugin.
https://github.com/boothen/gradle-kubectl
Sources: https://github.com/boothen/gradle-kubectl
Using the plugins DSL:
plugins {
id("uk.co.boothen.gradle.kubectl") version "0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.uk.co.boothen.gradle:gradle-kubectl:0.7")
}
}
apply(plugin = "uk.co.boothen.gradle.kubectl")
Using the plugins DSL:
plugins {
id "uk.co.boothen.gradle.kubectl" version "0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.uk.co.boothen.gradle:gradle-kubectl:0.7"
}
}
apply plugin: "uk.co.boothen.gradle.kubectl"