-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #612 from Praqma/oci_support
feat: support oci charts
- Loading branch information
Showing
5 changed files
with
77 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
version: v3.7.0 | ||
--- | ||
|
||
# Using OCI registries for helm charts | ||
|
||
Helmsman allows you to use charts stored in OCI registries. | ||
|
||
You need to export the following env variables: | ||
|
||
- `HELM_EXPERIMENTAL_OCI=1` | ||
|
||
if the registry requires authentication, you must login before running Helmsman | ||
|
||
```sh | ||
helm registry login -u myuser my-registry.local | ||
``` | ||
|
||
```toml | ||
[apps] | ||
[apps.my-app] | ||
chart = "oci://my-registry.local/my-chart" | ||
version = "1.0.0" | ||
``` | ||
|
||
```yaml | ||
#... | ||
apps: | ||
my-app: | ||
chart: oci://my-registry.local/my-chart | ||
version: 1.0.0 | ||
``` | ||
For more information, read the [helm registries documentation](https://helm.sh/docs/topics/registries/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters