me.stefanozanella.gradle.plugin.k8s-deploy
Owner: Stefano Zanella
Automatically build and deploy a Docker image for your project to an existing Kubernetes deployment
https://github.com/stefanozanella/gradle-plugin-k8s-deploy
Sources: https://github.com/stefanozanella/gradle-plugin-k8s-deploy.git
Version 0.0.1 (latest)
0.0.1
Created 13 October 2022.
Automatically build and deploy a Docker image for your project to an existing Kubernetes deployment
Using the plugins DSL:
plugins {
id("me.stefanozanella.gradle.plugin.k8s-deploy") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("me.stefanozanella:gradle-plugin-k8s-deploy:0.0.1")
}
}
apply(plugin = "me.stefanozanella.gradle.plugin.k8s-deploy")
Using the plugins DSL:
plugins {
id "me.stefanozanella.gradle.plugin.k8s-deploy" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "me.stefanozanella:gradle-plugin-k8s-deploy:0.0.1"
}
}
apply plugin: "me.stefanozanella.gradle.plugin.k8s-deploy"