Create a dyneemes node template

In this tutorial, we will create a template for multi-cloud Kubernetes.

Create a measurement

In the first step, we will create a measurement for Azure and AWS nodes. To create a measurement for Azure and AWS nodes, you can follow the detailed instructions provided in the "Create a Buckypaper VMs template" tutorial.

Create an image

The next step is to create images for Azure and AWS. At this stage, you will obtain the image IDs for each cloud provider.

Create a template

At this step, you need to create a template where in the body, you will pass the "images" field with the IDs you obtained in the previous step.

Azure image ID - 4695e388-32d6-4726-a6d3-97f753c0fc94
AWS image ID - 4695e388-32d6-4726-a6d3-97f753c0fc93

// BODY

{
    "images":[
    "4695e388-32d6-4726-a6d3-97f753c0fc94", 
    "4695e388-32d6-4726-a6d3-97f753c0fc93"
    ]
}

Last updated