Deploy Instances Using the Customized Machine Image

You can deploy instances using your custom machine image.

For more information on deploying instances, see Creating Instances Using Orchestrations

In the orchestration, ensure that you specify your customized machine image for the imagelist parameter:

{
  "name": "/mytenant/public/single_instance",
  "oplans": [
    {
      "obj_type": "launchplan",
      "label": "single_instance_plan",
      "objects": [
        {
          "instances": [
            {
              "name": "/mytenant/public/single_instance",
              "label": "single_instance",
              "shape": "oc3",
              "imagelist": "/mytenant/public/mycustomimage",
              "networking": {
                "net0": {
                  "vnet": "/mytenant/public/ipoib-vnet"
                }
              }
            }
          ]
        }
      ]
    }
  ]
}