UNPKG

@hashgraph/solo

Version:

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

14 lines 636 B
// SPDX-License-Identifier: Apache-2.0 import { RemoteConfigCollector } from './remote-config-collector.js'; export class GetSoloRemoteConfigMapTask { static getTask(k8Factory, logger, customOutputDirectory = '') { return { title: 'Get solo-remote-config ConfigMaps from all clusters', task: async () => { const outputDirectory = await new RemoteConfigCollector(k8Factory, logger).collect(customOutputDirectory); logger.showUser(`Remote config saved to ${outputDirectory}`); }, }; } } //# sourceMappingURL=get-solo-remote-config-map-task.js.map