@hashgraph/solo
    Preparing search index...

    The HelmClient is a bridge between TypeScript and the Helm CLI. The client is highly dependent on specific features and versions of the Helm CLI tools; therefore, all implementations are expected to provide a packaged Helm executable of the appropriate version for each supported OS and architecture.

    Implements

    Index

    Constructors

    Methods

    • Executes the Helm CLI repo add sub-command and adds a new repository.

      Parameters

      Returns Promise<void>

      Error if name or url is null or blank.

      HelmExecutionException if the Helm CLI command fails.

      HelmParserException if the output of the Helm CLI command cannot be parsed.

    • Executes the Helm CLI list sub-command and returns the list of releases.

      Parameters

      • allNamespaces: boolean

        if true, list releases across all namespaces.

      • Optionalnamespace: string

        the namespace to list releases from. Only used if allNamespaces is false.

      • OptionalkubeContext: string

      Returns Promise<ReleaseItem[]>

      the list of releases.