---
title: "Authorize in the Helm CLI"
sidebar_label: "Authorize in the Helm CLI"
sidebar_position: 1
description: "How to authorize in the Helm CLI to work with Helm charts"
---

import Formbricks from '@theme/MDXComponents/Formbricks'

# Authorize in the Helm CLI

1. Check that you are using a version of the Helm CLI that is supported by your [version of Kubernetes](https://helm.sh/docs/topics/version_skew/).

2. If you are using Helm CLI version 3.8.0 or lower, enable OCI (Open Container Initiative) support in [Open Container Initiative](https://opencontainers.org/) Helm:

   ```bash
   export HELM_EXPERIMENTAL_OCI=1
   ```

3. [Create a registry in Container Registry](/craas/registry/create-registry.mdx).

4. [Get a registry token](/craas/tokens/generate-token.mdx).

5. Authorize with a token:

   ```bash
   helm registry login -u token https://cr.selcloud.ru
   ```

<Formbricks />
