Class HelmServerOptionsHolder
-
- All Implemented Interfaces:
-
io.github.build.extensions.oss.gradle.plugins.helm.command.ConfigurableHelmOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.ConfigurableHelmServerOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.HelmOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.HelmServerOptions
public final class HelmServerOptionsHolder implements ConfigurableHelmServerOptions
-
-
Field Summary
Fields Modifier and Type Field Description private final Property<String>kubeContextprivate final RegularFilePropertykubeConfigprivate final Property<String>namespace
-
Constructor Summary
Constructors Constructor Description HelmServerOptionsHolder(ObjectFactory objects)HelmServerOptionsHolder(Property<String> kubeContext, RegularFileProperty kubeConfig, Property<String> namespace)
-
Method Summary
Modifier and Type Method Description Property<String>getKubeContext()Name of the kubeconfig context to use. RegularFilePropertygetKubeConfig()Path to the Kubernetes configuration file. Property<String>getNamespace()Namespace scope for this request. -
-
Method Detail
-
getKubeContext
Property<String> getKubeContext()
Name of the kubeconfig context to use.
Corresponds to the
--kube-contextcommand line option in the Helm CLI.
-
getKubeConfig
RegularFileProperty getKubeConfig()
Path to the Kubernetes configuration file.
If this property is set, its value will be used to set the
KUBECONFIGenvironment variable for each Helm invocation.
-
getNamespace
Property<String> getNamespace()
Namespace scope for this request.
Corresponds to the
--namespaceCLI parameter.
-
-
-
-