com.github.rmee.oc
Owner: hallowelt
Integration of Kubernetes, OpenShift and Helm command line clients.
https://github.com/rmee/gradle-plugins/tree/master/oc
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
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 oc command line client from Gradle to manage OpenShift clusters.
Using the plugins DSL:
plugins {
id("com.github.rmee.oc") version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.rmee:oc:1.1.20200614081240")
}
}
apply(plugin = "com.github.rmee.oc")
Using the plugins DSL:
plugins {
id "com.github.rmee.oc" version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.rmee:oc:1.1.20200614081240"
}
}
apply plugin: "com.github.rmee.oc"