Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions website/docs/r/release.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,34 @@ resource "helm_release" "example" {
}
```

## Example Usage - Chart Repository configured from OCI Registry

Provider supports grabbing charts from an OCI repository:

```hcl

provider "helm" {
kubernetes {
config_path = "~/.kube/config"
}

# localhost registry with password protection
registry {
url = "oci://localhost:5000"
username = "username"
password = "password"
}
}

resource "helm_release" "example" {
name = "testchart"
namespace = "helm_registry"
repository = "oci://localhost:5000/helm-charts"
version = "1.2.3"
chart = "test-chart"
}
```

## Example Usage - Chart Repository configured using GCS/S3

The provider also supports helm plugins such as GCS and S3 that add S3/GCS helm repositories by using `helm plugin install`
Expand Down