@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (12 loc) • 460 B
TypeScript
import { type NamespaceName } from '../../../types/namespace/namespace-name.js';
import { type ClusterReferenceName } from '../../../types/index.js';
export interface ClusterReferenceSetupConfigClass {
chartDirectory: string;
clusterSetupNamespace: NamespaceName;
deployMinio: boolean;
deployMetricsServer: boolean;
deployPrometheusStack: boolean;
soloChartVersion: string;
context?: string;
clusterRef: ClusterReferenceName;
}