@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
22 lines (21 loc) • 886 B
TypeScript
import { type HelmExecutionBuilder } from '../../execution/helm-execution-builder.js';
import { type HelmRequest } from '../helm-request.js';
import { type Chart } from '../../model/chart.js';
import { type InstallChartOptions } from '../../model/install/install-chart-options.js';
/**
* A request to install a Helm chart.
*/
export declare class ChartInstallRequest implements HelmRequest {
readonly releaseName: string;
readonly chart: Chart;
readonly options: InstallChartOptions;
/**
* Creates a new install request with the given chart and options.
*
* @param releaseName The name of the release.
* @param chart The chart to install.
* @param options The options to use when installing the chart.
*/
constructor(releaseName: string, chart: Chart, options?: InstallChartOptions);
apply(builder: HelmExecutionBuilder): void;
}