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 1.1.20200614081240 (latest)
1.1.20200614081240
Created 14 June 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Access to kubectl command line tool from Gradle to manage Kubernetes.
Using the plugins DSL:
plugins {
id("com.github.rmee.kubectl") version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.rmee:kubectl:1.1.20200614081240")
}
}
apply(plugin = "com.github.rmee.kubectl")
Using the plugins DSL:
plugins {
id "com.github.rmee.kubectl" version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.rmee:kubectl:1.1.20200614081240"
}
}
apply plugin: "com.github.rmee.kubectl"