Interface HelmRendering
-
- All Implemented Interfaces:
-
io.github.build.extensions.oss.gradle.plugins.helm.command.ConfigurableHelmOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.ConfigurableHelmValueOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.HelmOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.HelmValueOptions,org.gradle.api.Buildable,org.gradle.api.Named
public interface HelmRendering implements Named, Buildable, ConfigurableHelmValueOptions
Represents a local rendering of templates for the containing chart.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classHelmRendering.Companion
-
Method Summary
Modifier and Type Method Description abstract Property<String>getReleaseName()abstract ListProperty<String>getApiVersions()abstract Property<Boolean>isUpgrade()abstract ListProperty<String>getShowOnly()abstract Property<Boolean>getUseReleaseNameInOutputPath()abstract Property<Boolean>getValidate()abstract DirectoryPropertygetOutputDir()abstract MapProperty<String, Object>getValues()abstract MapProperty<String, Object>getFileValues()abstract ConfigurableFileCollectiongetValueFiles()-
-
Method Detail
-
getReleaseName
abstract Property<String> getReleaseName()
-
getApiVersions
abstract ListProperty<String> getApiVersions()
-
getShowOnly
abstract ListProperty<String> getShowOnly()
-
getUseReleaseNameInOutputPath
abstract Property<Boolean> getUseReleaseNameInOutputPath()
-
getValidate
abstract Property<Boolean> getValidate()
-
getOutputDir
abstract DirectoryProperty getOutputDir()
-
getFileValues
abstract MapProperty<String, Object> getFileValues()
-
getValueFiles
abstract ConfigurableFileCollection getValueFiles()
-
-
-
-