com.github.rmee.kubectl
Owner: hallowelt
Integration of Kubernetes, OpenShift and Helm command line clients.
https://github.com/rmee/gradle-plugins/tree/master/kubectl
Sources: https://github.com/rmee/gradle-plugins/tree/master/kubernetes
Version 0.2.20180604153953
0.2.20180604153953
Created 04 June 2018.
Integration of Kubernetes, OpenShift and Helm command line clients.
Using the plugins DSL:
plugins {
id("com.github.rmee.kubectl") version "0.2.20180604153953"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rmee:kubernetes:0.2.20180604153953")
}
}
apply(plugin = "com.github.rmee.kubectl")
Using the plugins DSL:
plugins {
id "com.github.rmee.kubectl" version "0.2.20180604153953"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rmee:kubernetes:0.2.20180604153953"
}
}
apply plugin: "com.github.rmee.kubectl"