io.github.fstaudt.helm-values
Owner: François Staudt
Generate JSON schemas for complex Helm charts with Gradle!
https://github.com/fstaudt/helm-values
Sources: https://github.com/fstaudt/helm-values-gradle-plugin
Version 0.10.0 (latest)
0.10.0
Created 03 November 2024.
Generate JSON schemas to help writing values for Helm charts!
Using the plugins DSL:
plugins {
id("io.github.fstaudt.helm-values") version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fstaudt.helm:helm-values-gradle-plugin:0.10.0")
}
}
apply(plugin = "io.github.fstaudt.helm-values")
Using the plugins DSL:
plugins {
id "io.github.fstaudt.helm-values" version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fstaudt.helm:helm-values-gradle-plugin:0.10.0"
}
}
apply plugin: "io.github.fstaudt.helm-values"