@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (12 loc) • 336 B
TypeScript
import { type K8 } from './k8.js';
export interface K8Factory {
/**
* Get a K8 instance for the given context
* @param context - The context to get the K8 instance for
*/
getK8(context: string): K8;
/**
* Get the default K8 instance which uses the kubeconfig current context
*/
default(): K8;
}