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.3.0
Created 17 September 2022.
Generate JSON schemas to validate values of complex Helm charts with Gradle!
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.fstaudt.helm-values") version "0.3.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.fstaudt.helm-values:io.github.fstaudt.helm-values.gradle.plugin:0.3.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.fstaudt.helm-values") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.fstaudt.helm-values:io.github.fstaudt.helm-values.gradle.plugin:0.3.0") } } apply(plugin = "io.github.fstaudt.helm-values")
- Applying plugins to all subprojects .