com.github.bryncooke.kubeboot
Owner: Bryn Cooke
Plugin for getting started with kubernetes with a cicd pipeline
https://github.com/bryncooke/kubeboot
Sources: https://github.com/bryncooke/kubeboot.git
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 26 May 2020.
Plugin for getting started with kubernetes with a cicd pipeline
Using the plugins DSL:
plugins {
id("com.github.bryncooke.kubeboot") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.bryncooke.kubeboot:plugin:1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.bryncooke.kubeboot")
Using the plugins DSL:
plugins {
id "com.github.bryncooke.kubeboot" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.bryncooke.kubeboot:plugin:1.0-SNAPSHOT"
}
}
apply plugin: "com.github.bryncooke.kubeboot"