android-cuttlefish icon indicating copy to clipboard operation
android-cuttlefish copied to clipboard

Support user artifact path for CVD creation with canonical config

Open k311093 opened this issue 1 year ago • 0 comments

Add support for the notation @user_artifact to specify user artifact path at canonical config.

Example config for using user artifact while launching CVD with canonical config.

{
  "env_config": {
    "common": {
      "host_package": "@user_artifact/$user_artifact_id"
    },
    "instances": [
      {
        "vm": {
          "memory_mb": 8192,
          "setupwizard_mode": "OPTIONAL",
          "cpus": 8
        },
        "disk": {
          "default_build": "@user_artifact/$user_artifact_id"
        }
      }
    ]
  }
}

k311093 avatar Jul 24 '24 05:07 k311093