UNPKG

@hashgraph/solo

Version:

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

16 lines 618 B
// SPDX-License-Identifier: Apache-2.0 import { K8ClientContainer } from './k8-client-container.js'; export class K8ClientContainers { kubeConfig; pods; kubectlInstallationDirectory; constructor(kubeConfig, pods, kubectlInstallationDirectory) { this.kubeConfig = kubeConfig; this.pods = pods; this.kubectlInstallationDirectory = kubectlInstallationDirectory; } readByRef(containerReference) { return new K8ClientContainer(this.kubeConfig, containerReference, this.pods, this.kubectlInstallationDirectory); } } //# sourceMappingURL=k8-client-containers.js.map