Skip to content

Commit

Permalink
Merge pull request #104 from unbroken-dome/feature/helm-download-3.4.1
Browse files Browse the repository at this point in the history
Download client: Helm 3.4.1
  • Loading branch information
tkrullmann authored Dec 5, 2020
2 parents 14274aa + 961345c commit 1fe8da3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/configure-helm.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ The following example shows how the download can be configured in the build scri
helm {
downloadClient {
enabled = true
version = '3.3.4'
version = '3.4.1'
}
}
----
Expand All @@ -146,7 +146,7 @@ helm {
helm {
downloadClient {
enabled.set(true)
version.set("3.3.4")
version.set("3.4.1")
}
}
----
Expand All @@ -158,7 +158,7 @@ The following example shows how the download can be configured using the gradle.
.gradle.properties
----
helm.client.download.enabled=true
helm.client.download.version=3.3.4
helm.client.download.version=3.4.1
----


Expand All @@ -176,7 +176,7 @@ The following properties control the download of the Helm client:
| `version`
| `helm.client.download.version`
| The version of the Helm client to be downloaded.
| The latest version of Helm available at the time the plugin is published (currently `3.3.4`)
| The latest version of Helm available at the time the plugin is published (currently `3.4.1`)

| `destinationDir`
|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface HelmDownloadClient {
* the plugin is released.
*/
@JvmStatic
val DEFAULT_HELM_CLIENT_VERSION = "3.3.4"
val DEFAULT_HELM_CLIENT_VERSION = "3.4.1"


internal const val DEFAULT_HELM_CLIENT_GROUP = "sh.helm"
Expand All @@ -48,7 +48,7 @@ interface HelmDownloadClient {
/**
* The version of the client to be downloaded.
*
* Defaults to the latest version available at the time of the plugin release (currently `3.3.4`).
* Defaults to the latest version available at the time of the plugin release (currently `3.4.1`).
*
* @see DEFAULT_HELM_CLIENT_VERSION
*/
Expand Down

0 comments on commit 1fe8da3

Please sign in to comment.