Interface HelmDownloadClient
-
- All Implemented Interfaces:
public interface HelmDownloadClientConfigures downloading of the Helm client executable, as an alternative to specifying the path to a local executable.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classHelmDownloadClient.Companion
-
Method Summary
Modifier and Type Method Description abstract Property<Boolean>getEnabled()Whether to download the Helm client. abstract Property<String>getVersion()The version of the client to be downloaded. -
-
Method Detail
-
getEnabled
abstract Property<Boolean> getEnabled()
Whether to download the Helm client. Defaults to
false.Can be configured using the
helm.client.download.enabledproject property.
-
getVersion
abstract Property<String> getVersion()
The version of the client to be downloaded.
Defaults to the latest version available at the time of the plugin release (currently
3.4.1).
-
-
-
-