Search Gradle plugins

Version 0.0.1 (latest)

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"

Learn how to apply plugins to subprojects