@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines (14 loc) • 597 B
TypeScript
export declare class HelmChartSchema {
name: string;
namespace: string;
release: string;
repository: string;
directory: string;
version: string;
labelSelector: string;
containerName: string;
ingressClassName: string;
ingressControllerName: string;
ingressControllerPrefix: string;
constructor(name?: string, namespace?: string, release?: string, repository?: string, directory?: string, version?: string, labelSelector?: string, containerName?: string, ingressClassName?: string, ingressControllerName?: string, ingressControllerPrefix?: string);
}