Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Managed Service for Kubernetes
  • Comparison with other Yandex Cloud services
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
        • List
        • Get
        • Install
        • Update
        • Uninstall
  • Monitoring metrics
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListHelmReleasesRequest
  • ListHelmReleasesResponse
  • HelmRelease
  1. API reference
  2. Kubernetes Marketplace gRPC
  3. HelmRelease
  4. List

Kubernetes Marketplace, gRPC: HelmReleaseService.List

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • ListHelmReleasesRequest
  • ListHelmReleasesResponse
  • HelmRelease

Retrieves the list of Helm releases in the specified Kubernetes Cluster.

gRPC requestgRPC request

rpc List (ListHelmReleasesRequest) returns (ListHelmReleasesResponse)

ListHelmReleasesRequestListHelmReleasesRequest

{
  "cluster_id": "string",
  "page_size": "int64",
  "page_token": "string"
}

Field

Description

cluster_id

string

Required field. The ID of the Kubernetes cluster to list Helm releases from.

page_size

int64

The maximum number of results per page that should be returned.

page_token

string

Token for pagination to retrieve the next page of results.

ListHelmReleasesResponseListHelmReleasesResponse

{
  "helm_releases": [
    {
      "id": "string",
      "cluster_id": "string",
      "app_name": "string",
      "app_namespace": "string",
      "product_id": "string",
      "product_name": "string",
      "product_version": "string",
      "status": "Status",
      "created_at": "google.protobuf.Timestamp"
    }
  ],
  "next_page_token": "string"
}

Field

Description

helm_releases[]

HelmRelease

List of Helm releases in the Kubernetes cluster.

next_page_token

string

Token for retrieving the next page of Helm releases.

HelmReleaseHelmRelease

A Helm Release.

Field

Description

id

string

ID of a helm release.

cluster_id

string

ID of the Kubernetes cluster.

app_name

string

Name of the application.

app_namespace

string

Namespace of the application.

product_id

string

Kubernetes marketplace product id.

product_name

string

Kubernetes marketplace product name.

product_version

string

Kubernetes marketplace product version.

status

enum Status

Status of a helm release.

  • STATUS_UNSPECIFIED
  • UNKNOWN: Helm release status is unknown
  • DEPLOYED: Helm release deployed.
  • UNINSTALLED: Helm release uninstalled.
  • SUPERSEDED: Helm release superseded.
  • FAILED: Helm release installation failed.
  • UNINSTALLING: Helm release is being uninstalled.
  • PENDING_INSTALL: Helm release is to be installed.
  • PENDING_UPGRADE: Helm release is to be updated.
  • PENDING_ROLLBACK: Helm release is to be rolled back.

created_at

google.protobuf.Timestamp

Creation timestamp.

Was the article helpful?

Previous
Overview
Next
Get
Yandex project
© 2025 Yandex.Cloud LLC