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
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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).
      • Methods inherited from class io.github.build.extensions.oss.gradle.plugins.helm.command.ConfigurableHelmServerOptions

        getKubeConfig, getKubeContext, getNamespace
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getDryRun

         abstract Property<Boolean> getDryRun()

        If true, only simulate the operation.

        Corresponds to the --dry-run CLI parameter.

      • getNoHooks

         abstract Property<Boolean> getNoHooks()

        If true, prevent hooks from running during the operation.

        Corresponds to the --no-hooks CLI parameter.

      • getRemoteTimeout

         abstract Property<Duration> getRemoteTimeout()

        Time to wait for any individual Kubernetes operation (like Jobs for hooks). Default is 300.

        Corresponds to the --timeout command line option in the Helm CLI.