Helm releases are not displayed

The Helm releases are not displayed on the Helm releases page in the Web console.

Symptoms

When you access the Helm releases page by selecting Workloads > Helm Releases in the navigation menu, the releases are not listed.

Causes

The number of releases that are requested exceeds the number of releases that can be loaded and displayed in the Web console.

Resolving the problem

To display the content, access the list by using the CLI commands and limit the number of releases that are displayed. The steps are described in the following procedure:

  1. Log in to your cluster with the Helm CLI. See Setting up the Helm API for the command structure.

  2. Run the helm list command and limit the number of returned releases with the following options:

    • Use the -m or --max option: The -m or --max option sets the maximum number of releases that are returned from the request to display the list of releases. The variable must be a number that specifies how many to return. When the number is low enough that the memory is available, the releases are displayed. The following example displays the first 10 releases by using the -m option:

      helm list --tls -m 10
      
    • Use the -o or --offset option: The -o or --offset option specifies the release name of the release to begin with when returning the list of releases. The example displays the list of all releases beginning with the release titled release1, and ends with the latest one:

      helm list --tls -o release1
      
    • Use both the -m or --max and the -o or --offset options to limit the list: You can use these options together to further filter the releases that are displayed. The following example displays the list of the 10 releases beginning with the release titled release1.

      helm list --tls -o release1 -m 10