UNPKG

@hashgraph/solo

Version:

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

16 lines 765 B
// SPDX-License-Identifier: Apache-2.0 import { SoloError } from '../solo-error.js'; import { ErrorOwnership } from '../error-ownership.js'; import { ErrorCodeRegistry } from '../error-code-registry.js'; export class CreateDeploymentSoloError extends SoloError { retryable = true; ownership = ErrorOwnership.Infrastructure; constructor(cause) { super({ message: 'Error creating deployment', code: ErrorCodeRegistry.CREATE_DEPLOYMENT, troubleshootingSteps: 'Check the logs for details: tail -f ~/.solo/logs/solo.log | jq\nVerify cluster connectivity: kubectl get nodes\nReview your configuration: solo deployment config view', }, cause); } } //# sourceMappingURL=create-deployment-solo-error.js.map