@hashgraph/solo
    Preparing search index...

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    chartManager?: ChartManager
    configManager?: ConfigManager
    depManager?: DependencyManager
    helm?: HelmClient
    k8Factory?: K8Factory
    leaseManager?: LockManager
    logger?: SoloLogger
    taskList?: TaskList<any, ListrRendererValue, ListrRendererValue>
    COMMAND_NAME: "account" = 'account'

    Methods

    • Parameters

      • context_: {
            config: {
                amount: number;
                contextName: string;
                ecdsaPrivateKey?: string;
                ed25519PrivateKey?: string;
                generateEcdsaKey: boolean;
                namespace: NamespaceName;
                setAlias: boolean;
            };
            privateKey: PrivateKey;
        }

      Returns Promise<
          {
              accountAlias?: string;
              accountId: string;
              balance: number;
              privateKey: string;
              publicKey: string;
          },
      >

    • Returns a promise that invokes the shell command

      Parameters

      • cmd: string
      • arguments_: string[] = []
      • verbose: boolean = false
      • detached: boolean = false

      Returns Promise<string[]>

    • Prepare the values files map for each cluster

      Order of precedence:

      1. Chart's default values file (if chartDirectory is set)
      2. Profile values file
      3. User's values file

      Parameters

      • clusterReferences: ClusterReferences
      • OptionalchartDirectory: string

        the chart directory

      • OptionalprofileValuesFile: string

        the profile values file full path

      • OptionalvaluesFileInput: string

        the values file input string

      Returns Record<ClusterReferenceName, string>