Deployment

Commands to check component deployment and deployment results

  • Create a deployment to install components on devices.

  • Either --device-id or --device-alias is required.

    • However, --device-alias is not yet supported.

  • The configuration file follows the following structure:

    • JSON file

    • COMPONENT_ID

      • ex) com.example.first"

    • COMPONENT_VERSION

      • ex) "1.0.2"

#deployment_config.json
{
    "public": {
        "<COMPONENT_ID>": {
            "componentVersion": "COMPONENT_VERSION"
        },
    },
    "custom": {
        "<COMPONENT_ID>": {
            "componentVersion": "COMPONENT_VERSION"
        },
        "<COMPONENT_ID>": {
            "componentVersion": "COMPONENT_VERSION"
        }
    }
}
  • See the list of public components as follows:

  • See the list of custom components as follows:

Command

Usage

list-deployments

  • Retrieves the list of deployment results of a specific device.

  • Either --device-id or --device-alias is required.

    • However, --device-alias is not yet supported.

Command

Usage

Last updated