Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Истории успеха
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • ИИ для бизнеса
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Истории успеха
  • Документация
  • Блог
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»
Terraform в Yandex Cloud
  • Начало работы
  • Библиотека решений
    • Обзор
    • История изменений (англ.)
          • kubernetes_marketplace_helm_release

В этой статье:

  • Example Usage
  • Schema
  • Required
  • Optional
  • Read-Only
  • Nested Schema for timeouts
  • Import
  1. Справочник Terraform
  2. Ресурсы (англ.)
  3. Managed Kubernetes (MK8S) Marketplace
  4. Resources
  5. kubernetes_marketplace_helm_release

yandex_kubernetes_marketplace_helm_release (Resource)

Статья создана
Yandex Cloud
Обновлена 11 сентября 2025 г.
  • Example Usage
  • Schema
    • Required
    • Optional
    • Read-Only
    • Nested Schema for timeouts
  • Import

Allows management of Kubernetes product installed from Yandex Cloud Marketplace.
For more information, see official documentation.

Example UsageExample Usage

//
// Create a new Kubernetes Marketplace Helm Release. 
//
resource "yandex_kubernetes_marketplace_helm_release" "gatekeeper_helm_release" {
  cluster_id = yandex_kubernetes_cluster.cluster_resource_name.id

  product_version = "f2ecif2vt62k2637tgus" // Gatekeeper 3.12.0

  name      = "gatekeeper"
  namespace = kubernetes_namespace.namespace_resource_name.name

  user_values = {
    auditInterval             = "90"
    constraintViolationsLimit = "30"
  }
}

SchemaSchema

RequiredRequired

  • cluster_id (String) The ID of the Kubernetes cluster where the product will be installed.
  • name (String) The name of the deployment.
  • namespace (String) The Kubernetes namespace where the product will be installed.
  • product_version (String) The ID of the product version to be installed.

OptionalOptional

  • timeouts (Block, Optional) (see below for nested schema)
  • user_values (Map of String, Sensitive) Values to be passed for the installation of the product. The block consists of attributes that accept string values. The exact structure depends on the particular product and may differ for different versions of the same product. Depending on the product, some values may be required, and the installation may fail if they are not provided.

applicationName and namespace, if provided in this block, override name and namespace arguments, respectively.

Read-OnlyRead-Only

  • created_at (String) The Helm Release creation (first installation) timestamp.
  • id (String) The resource identifier.
  • product_id (String) The ID of the Marketplace product.
  • product_name (String) The name of the Marketplace product.
  • status (String) Status of the deployment.

Nested Schema for Nested Schema for timeouts

Optional:

  • create (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
  • delete (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
  • update (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

ImportImport

The resource can be imported by using their resource ID. For getting the resource ID you can use Yandex Cloud Web Console or YC CLI.

# terraform import yandex_kubernetes_marketpalce_helm_release.<resource Name> <resource Id>
terraform import yandex_kubernetes_marketpalce_helm_release.default ...

Была ли статья полезна?

Предыдущая
lockbox_secret_version_hashed
Следующая
airflow_cluster
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»