-
Notifications
You must be signed in to change notification settings - Fork 542
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
Support pushing of Helm charts to OCI registries #1364
Comments
FYI I tried the following configuration : <plugin>
<groupId>org.eclipse.jkube</groupId>
<artifactId>kubernetes-maven-plugin</artifactId>
<configuration>
<helm>
<stableRepository>
<name>local-stable-repo-id</name>
<url>oci://localhost:5100/helm-charts</url>
<type>ARTIFACTORY</type>
</stableRepository>
<snapshotRepository>
<name>local-snapshot-repo-id</name>
<url>oci://localhost:5100/helm-charts</url>
<type>ARTIFACTORY</type>
</snapshotRepository>
</helm>
</configuration>
</plugin>
</plugin> And I not surprisingly got the following error :
|
This was referenced May 3, 2023
rohanKanojia
added a commit
to rohanKanojia/kubernetes-client
that referenced
this issue
May 9, 2023
…uments in HttpRequest Related to eclipse-jkube/jkube#1364 Signed-off-by: Rohan Kumar <[email protected]>
11 tasks
rohanKanojia
added a commit
to rohanKanojia/kubernetes-client
that referenced
this issue
May 9, 2023
…uments in HttpRequest Related to eclipse-jkube/jkube#1364 Signed-off-by: Rohan Kumar <[email protected]>
rohanKanojia
added a commit
to rohanKanojia/kubernetes-client
that referenced
this issue
May 9, 2023
…uments in HttpRequest Related to eclipse-jkube/jkube#1364 Signed-off-by: Rohan Kumar <[email protected]>
rohanKanojia
added a commit
to rohanKanojia/kubernetes-client
that referenced
this issue
May 10, 2023
…uments in HttpRequest Related to eclipse-jkube/jkube#1364 Signed-off-by: Rohan Kumar <[email protected]>
manusa
pushed a commit
to fabric8io/kubernetes-client
that referenced
this issue
May 10, 2023
…uments in HttpRequest Related to eclipse-jkube/jkube#1364 Signed-off-by: Rohan Kumar <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
With the release of Helm 3.8.0, Helm is able to store and work with charts in container registries, as an alternative to Helm repositories (c.f. Storing Helm Charts in OCI Registries).
This is a feature request to add support for oci in the
helm-push
goal.Info
mvn -v
) :This would provide a vendor independant alternative to the existing HTTP based repositories currently supported.
The text was updated successfully, but these errors were encountered: