-
Notifications
You must be signed in to change notification settings - Fork 240
docs(ins): add documentation vmware migration #4902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pending fixes for my comments
```bash | ||
scw block snapshot import-from-object-storage bucket=<my_bucket> key=<my-qcow2-file-name.qcow2> name=<my-imported-snapshot> size=<size-in-GB> | ||
``` | ||
2 . Create a volume from the snapshot: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are not creating a volume at this stage but a Scaleway Image
=> Create a Scaleway Image from the snapshot
|
||
- Disk configuration (number, size, type) | ||
- Network configuration (number of NICs, type) | ||
- Boot type (BIOS or UEFI) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a warning here that only UEFI is compatible with Scaleway Instances
Identify the virtual machines (VMs) to migrate on your VMware plattform: | ||
|
||
- Disk configuration (number, size, type) | ||
- Network configuration (number of NICs, type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If multiple NIC are needed, several Private network can be later added to the instance.
|
||
Identify the virtual machines (VMs) to migrate on your VMware plattform: | ||
|
||
- Disk configuration (number, size, type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If multiple disks are present, do the same steps to create several snapshot and group them as a single Scaleway image.
3. Create the server from the image: | ||
|
||
```bash | ||
scw instance server create image=<image-id> type=<commercial-type> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(At this step, add the "optional" private network attachement)
modprobe nbd | ||
qemu-nbd -c /dev/nbd0 <vm_name>.qcow2 | ||
``` | ||
Make any changes (e.g., install cloud-init, remove VMware tools). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add in the list of potential changes "add VirtIO drivers"
posted: 2024-04-29 | ||
categories: | ||
- compute | ||
tags: instance type production vmware esxi migratio |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo "migratio" vs "migration"
Your checklist for this pull request
Description
Documentation migration VMware virtual machine -> Scaleway Instance