Skip to content

Create a Windows Server with a boot volume with different performance

To create a server with a different performance type, you must first create the volume. Once the volume with the desired performance type has been successfully created, you can proceed with creating your server based on this volume.

Create the volume from an image and choose the proper performance type

Section titled “Create the volume from an image and choose the proper performance type”
Terminal window
stackit beta volume create --performance-class `<PERFORMANCE_CLASS>` --availability-zone `<AVAILABILITY_ZONE>` --name `<VOLUME_NAME>` --source-id `<IMAGE_ID>` --source-type image --size `<IMAGE_SIZE>`

Create the server from this volume with STACKIT IAAS API/CLI

Section titled “Create the server from this volume with STACKIT IAAS API/CLI”

Use the VolumeID and create your server via the STACKIT IAAS API/CLI (see also Step 1.2: Create a Server from the CLI/API -Windows-).

Terminal window
stackit beta server create -n `<SERVERNAME>` --availability-zone `<AVAILABILITY_ZONE>` --machine-type `<MACHINE_TYPE>` --keypair-name `<KEYPAIR_NAME>` --network-id `<NETWORK_ID>` --boot-volume-source-id `<VOLUME_ID>` --boot-volume-source-type volume --security-groups `<SECURITY_GROUP_ID>`