# Pulling a Helm chart from a registry

You can pull a [Helm chart](https://helm.sh/docs/topics/charts/) from a [registry](../../concepts/registry.md) in Cloud Registry. Cloud Registry stores Helm charts as [Docker images](../../../container-registry/concepts/docker-image.md).

{% list tabs group=instructions %}

- CLI {#cli}

  To pull a Helm chart, run the command below:

  ```bash
  helm pull oci://registry.yandexcloud.net/<registry_ID>/<Helm_chart_name> --version <version>
  ```

  {% note info %}
  
  If you are using a Helm version below 3.8.0, add the `export HELM_EXPERIMENTAL_OCI=1 && \` string at the beginning of the command to enable [Open Container Initiative](https://opencontainers.org/) (OCI) support in the Helm client.
  
  {% endnote %}

  Result:

  ```bash
  Pulled: registry.yandexcloud.net/<registry_ID>/<Helm_chart_name>:<version>
  Digest: sha256:14ae8791607a62ab7adde4c546fd4a256f34298ad96855eae6662f53********
  ```

{% endlist %}