> For the complete documentation index, see [llms.txt](https://utm-1.gitbook.io/utm-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://utm-1.gitbook.io/utm-docs/dokumentaciya/utm-it/resheniya/kubernetes/rabota-s-klasterom/helm.md).

# HELM

## Ссылки

The package manager for Kubernetes: [helm.sh](https://helm.sh/)

Установка Helm: [helm.sh](https://helm.sh/docs/intro/install)

## Установка

### Установка в Linux

#### Установка с помощью готового скрипта <a href="#from-script" id="from-script"></a>

```bash
cd $HOME
mkdir helm_install
cd helm_install

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh

./get_helm.sh
```

#### Проверка

```bash
helm version

# version.BuildInfo{Version:"v3.19.0", GitCommit:"3d8990f0836691f0229297773f3524598f46bda6", GitTreeState:"clean", GoVersion:"go1.24.7"}
```

### Установка в Windows

**Скачать бинарный Helm** [с страницы выпусков Helm на GitHub](https://github.com/helm/helm/releases). Важно выбрать последнюю версию, чтобы обеспечить совместимость и безопасность.

Название файла для Windows: helm-v3.19.0-windows-amd64.zip

{% hint style="info" %}
На 30.10.2025 рекомендуется скачивать версию [v3.19.0](https://github.com/helm/helm/releases/tag/v3.19.0)
{% endhint %}

Дистрибутив можно взять тут: O:\Дистрибутивы\Helm

**Извлечь файлы** из загруженного файла с помощью инструмента, например WinRAR или 7-Zip. После извлечения появится папка с исполняемым файлом Helm.

**Переместить Helm в PATH**. Файл helm.exe нужно переместить в каталог, который включён в PATH системы, или добавить текущий каталог Helm в PATH. Это позволяет запускать команды Helm из любой командной строки без указания его каталога.

{% hint style="info" %}
Рекомендуется файл helm.exe скопировать в папку C:\Windows\System32
{% endhint %}

**Проверить установку**. Открыть командную строку и ввести&#x20;

```
helm version
```

&#x20;— если Helm установлен правильно, появится информация о версии. Если нет, нужно проверить настройки PATH.

**Настроить Helm** (опционально). Можно настроить Helm под свои предпочтения или настроить конкретные репозитории для удобного доступа.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://utm-1.gitbook.io/utm-docs/dokumentaciya/utm-it/resheniya/kubernetes/rabota-s-klasterom/helm.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
