UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

16 lines (13 loc) 481 B
// SPDX-License-Identifier: Apache-2.0 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; }