---
tags: SUSE
---
# Fleet Introduces OCI Support for Helm Charts
Fleet in Rancher 2.7.0 can fetch Helm charts from OCI registries.
Using OCI registries to store Helm charts is an increasinly popular method of storage. It allows you to store your charts in a registry alongside your container images.
Using a chart in an OCI registry is fairly simple. In your git repository, you reference the chart like this in a `fleet.yaml` file:
```
helm:
chart: "oci://ghcr.io/fleetrepoci/guestbook"
```
If you want to reference a specific version of the chart you can use the `version` key.
```
helm:
chart: "oci://ghcr.io/fleetrepoci/guestbook"
version: 0.1.0
```
To use authenticated registries the GitRepo resource needs to [reference a Kubernetes secret with authentication credentials](https://github.com/rancher/fleet/blob/master/e2e/assets/single-cluster/helm-oci-with-auth.yaml).
Try it out with Fleet [v0.5.0](https://github.com/rancher/fleet/releases/tag/v0.5.0) or in Rancher [2.7.0](https://github.com/rancher/rancher/releases/tag/v2.7.0). You can learn more about using Fleet with and without OCI registries in the [Fleet documentation](https://fleet.rancher.io/).