Skip to content

Commit

Permalink
Merge branch 'hotfix/2.11.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalser committed Mar 1, 2023
2 parents 25a6318 + d91e229 commit 00ba40f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
= Changelog

== Version 2.11.1

* Fix helm binary path when adding incubator repository

== Version 2.11.0

* Support authentication to the helm repository using credentials from server definitions in maven `settings.xml` via `chartRepoServerId`.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.deviceinsight.helm</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>2.11.0</version>
<version>2.11.1</version>
<packaging>maven-plugin</packaging>

<name>Helm Maven Plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/deviceinsight/helm/PackageMojo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class PackageMojo : ResolveHelmMojo(), ServerAuthentication {
executeCmd(listOf(helm, "init", "--client-only", "--stable-repo-url", stableRepoUrl))
}
if (addIncubatorRepo) {
executeCmd(listOf("helm", "repo", "add", "incubator", incubatorRepoUrl) + helmAddFlags)
executeCmd(listOf(helm, "repo", "add", "incubator", incubatorRepoUrl) + helmAddFlags)
}
if (chartRepoUrl != null) {
val server by lazy { getServer(chartRepoServerId) }
Expand Down

0 comments on commit 00ba40f

Please sign in to comment.