@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
30 lines (29 loc) • 862 B
TypeScript
import { type Options } from '../../request/options.js';
import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js';
/**
* Options for the `kind get nodes` command.
*/
export declare class GetKubeConfigOptions implements Options {
/**
* The name of the cluster context name (default "kind")
*/
private readonly _name;
/**
* Use internal or external address
*/
private readonly _internal;
constructor(name?: string, internal?: boolean);
/**
* Apply the options to the KindExecutionBuilder.
* @param builder The KindExecutionBuilder to apply options to.
*/
apply(builder: KindExecutionBuilder): void;
/**
* The name of the cluster.
*/
get name(): string;
/**
* Whether to use internal or external address.
*/
get internal(): boolean;
}