Interface ConfigurableHelmServerOperationOptions
-
- 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.HelmServerOperationOptions,io.github.build.extensions.oss.gradle.plugins.helm.command.HelmServerOptions
public interface ConfigurableHelmServerOperationOptions implements ConfigurableHelmServerOptions, HelmServerOperationOptions
-
-
Method Summary
Modifier and Type Method Description abstract Property<Boolean>getDryRun()If true, only simulate the operation.abstract Property<Boolean>getNoHooks()If true, prevent hooks from running during the operation.abstract Property<Duration>getRemoteTimeout()Time to wait for any individual Kubernetes operation (like Jobs for hooks). -
-
Method Detail
-
getDryRun
abstract Property<Boolean> getDryRun()
If
true, only simulate the operation.Corresponds to the
--dry-runCLI parameter.
-
getNoHooks
abstract Property<Boolean> getNoHooks()
If
true, prevent hooks from running during the operation.Corresponds to the
--no-hooksCLI parameter.
-
getRemoteTimeout
abstract Property<Duration> getRemoteTimeout()
Time to wait for any individual Kubernetes operation (like Jobs for hooks). Default is 300.
Corresponds to the
--timeoutcommand line option in the Helm CLI.
-
-
-
-