-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with helm publishing #79
Labels
Milestone
Comments
Hi, can you please tell me what kind of Helm repository this is? ChartMuseum, Artifactory, ...? |
ChartMuseum based on Harbor registry
…On Tue, Dec 22, 2020 at 2:58 PM Paul Vorbach ***@***.***> wrote:
Hi, can you please tell me what kind of Helm repository this is?
ChartMuseum, Artifactory, ...?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#79 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADBYAIHSBM2ZG6455KOFRKDSWBREVANCNFSM4VE7QQOA>
.
|
I didn't manage to have a look at it today, so this will have to wait until next year. |
I managed to get it working with our helm repo hosted on nexus <groupId>com.deviceinsight.helm</groupId>
<artifactId>helm-maven-plugin</artifactId>
<version>2.9.0</version>
<configuration>
<chartRepoUsername>${nexus-user}</chartRepoUsername>
<chartRepoPassword>${nexus-pass}</chartRepoPassword>
<addIncubatorRepo>false</addIncubatorRepo>
<chartFolder>src/main/helm</chartFolder>
<chartDeleteUrl>https://mynexus/nexus/repository/helm-repo/${project.artifactId}-${project.model.version}.tgz</chartDeleteUrl>
<chartPublishUrl>https://mynexus/nexus/repository/helm-repo/${project.artifactId}-${project.model.version}.tgz</chartPublishUrl>
<chartPublishMethod>PUT</chartPublishMethod>
<skipSnapshots>false</skipSnapshots>
<helmVersion>3.2.0</helmVersion>
<strictLint>true</strictLint>
</configuration>
<executions>
<execution>
<goals>
<goal>package</goal>
<goal>lint</goal>
<goal>template</goal>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>`` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am having issue when executing mvn helm:deploy and getting following error.
Error creating/publishing helm chart: Unexpected status code when executing POST request to chart repo https://mysitename.io/chartrepo/library: 404 -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.deviceinsight.helm:helm-maven-plugin:2.8.0:deploy (default-cli) on project elastic-dijkstra: Error creating/publishing helm chart: Unexpected status code when executing POST request to chart repo https://mysitename.io/chartrepo/library: 404
I also tried the version 2.8.0
Please help on this
The text was updated successfully, but these errors were encountered: