https://github.com/frantjc/barge
Copy Helm Charts in between archives, releases, repositories, OCI registries, source code, and more.
https://github.com/frantjc/barge
helm helm-charts
Last synced: 5 months ago
JSON representation
Copy Helm Charts in between archives, releases, repositories, OCI registries, source code, and more.
- Host: GitHub
- URL: https://github.com/frantjc/barge
- Owner: frantjc
- Created: 2025-12-21T16:33:41.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-01-11T03:55:25.000Z (5 months ago)
- Last Synced: 2026-01-11T11:09:16.345Z (5 months ago)
- Topics: helm, helm-charts
- Language: Go
- Homepage:
- Size: 181 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# barge [](https://github.com/frantjc/barge/actions) [](https://pkg.go.dev/github.com/frantjc/barge) [](https://goreportcard.com/report/github.com/frantjc/barge)
Barge copies Helm Charts between archives, releases, repositories, OCI registries, source code, and more.
## use cases
- You want to move your Charts from an old HTTP(S) Helm repository to a new OCI Helm registry.
```sh
barge cp https://example.com/charts/example-1.0.0.tgz oci://ghcr.io/frantjc/charts/example:1.0.0
```
- You need to copy OSS Helm Charts into an internal registry or repository.
```sh
helm repo add chartmuseum https://chartmuseum.github.io/charts
barge cp repo://chartmuseum/chartmuseum artifactory://example.com/artifactory/helm-local
```
- You want to save a one-off Helm release for re-use later.
```sh
barge cp release://example archive://example.tgz
```
- You want to inspect a Helm Chart archive's source code before using it.
```sh
mkdir ./test
barge cp https://github.com/frantjc/barge/raw/refs/heads/main/testdata/test-0.1.0.tgz ./test
```
- You want to turn an OCI Helm Chart back into a regular archive.
```sh
barge cp oci://ghcr.io/frantjc/barge/charts/test ./test.tgz
```