@hashgraph/solo
    Preparing search index...

    Uses Kubernetes ConfigMaps to manage the remote configuration data by creating, loading, modifying, and saving the configuration data to and from a Kubernetes cluster.

    Index

    Constructors

    Accessors

    Methods

    • Creates a new remote configuration in the Kubernetes cluster. Gathers data from the local configuration and constructs a new ConfigMap entry in the cluster with initial command history and metadata.

      Parameters

      Returns Promise<void>

    • Creates a new ConfigMap entry in the Kubernetes cluster with the remote configuration data.

      Parameters

      • Optionalcontext: string

      Returns Promise<void>

    • Retrieves the ConfigMap containing the remote configuration from the Kubernetes cluster.

      Parameters

      • Optionalnamespace: NamespaceName

        The namespace to search for the ConfigMap.

      • Optionalcontext: string

        The context to use for the Kubernetes client.

      Returns Promise<ConfigMap>

      the remote configuration data.

      if the ConfigMap could not be read and the error is not a 404 status, will throw a SoloError SoloError

    • Performs the loading of the remote configuration. Checks if the configuration is already loaded, otherwise loads and adds the command to history.

      Parameters

      • argv: { _: string[] } & AnyObject

        arguments containing command input for historical reference.

      • validate: boolean = true

        whether to validate the remote configuration.

      • OptionalskipConsensusNodesValidation: boolean = true

        whether or not to validate the consensusNodes

      Returns Promise<void>

    • Modifies the loaded remote configuration data using a provided callback function. The callback operates on the configuration data, which is then saved to the cluster.

      Parameters

      • callback: (remoteConfig: RemoteConfigDataWrapper) => Promise<void>

        an async function that modifies the remote configuration data.

      Returns Promise<void>

      if the configuration is not loaded before modification, will throw a SoloError SoloError