net.mayope.deployplugin
Owner: Lukas Meisegeier
Opinionated tool to deploy docker container to kubernetes using helm
https://github.com/mayope/deployment-plugin
Sources: https://github.com/mayope/deployment-plugin
Version 0.0.68 (latest)
0.0.68
Created 05 April 2024.
Opinionated tool to deploy docker container to kubernetes using helm
Using the plugins DSL:
plugins {
id("net.mayope.deployplugin") version "0.0.68"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.mayope:deployment-plugin:0.0.68")
}
}
apply(plugin = "net.mayope.deployplugin")
Using the plugins DSL:
plugins {
id "net.mayope.deployplugin" version "0.0.68"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.mayope:deployment-plugin:0.0.68"
}
}
apply plugin: "net.mayope.deployplugin"