Skip to main content

Class: HelmChart

Defined in: helm.d.ts:40

Represents a Helm chart that can be used to generate Kubernetes documents. It can be initialized with a file path or a byte array containing the chart data. The HelmChart.generate method creates documents from the Helm chart using the provided context and options.

Constructors

Constructor

new HelmChart(path): HelmChart;

Defined in: helm.d.ts:41

Parameters

ParameterType
pathstring

Returns

HelmChart

Constructor

new HelmChart(data): HelmChart;

Defined in: helm.d.ts:42

Parameters

ParameterType
dataUint8Array

Returns

HelmChart

Methods

generate()

generate(context, options): DocumentGroup;

Defined in: helm.d.ts:45

Creates a document group from the Helm chart using the provided options.

Parameters

ParameterType
contextBuildContext
optionsHelmOptions

Returns

DocumentGroup