Cloud Migration Guide: Difference between revisions
No edit summary |
|||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 5: | Line 5: | ||
{| class="mw-message-box mw-message-box-warning" | {| class="mw-message-box mw-message-box-warning" | ||
| style="vertical-align:middle;" | '''⚠️ IMPORTANT SHUTDOWN NOTICE:''' | | style="vertical-align:middle;" | '''⚠️ IMPORTANT SHUTDOWN NOTICE:''' | ||
The Gen2 infrastructure will be permanently shut down | The Gen2 infrastructure will be permanently shut down in '''September 2026''' (refer to the [https://bwcloud-os.de/ '''bwCloud-OS website'''] for the exact date). All projects and data that have not been migrated to Gen3 by this date will be irrevocably deleted. To use Gen3, you must clarify and apply for your entitlements (which are subject to costs) in a timely manner. | ||
|} | |} | ||
| Line 23: | Line 23: | ||
This guide explains how to migrate your resources from the old bwCloud-OS Gen2 environment to bwCloud-OS Gen3. Because the two environments are completely separated, there is no automatic migration path. You will need to manually export your resources from the old cloud, download them locally, and upload them to the new cloud. Please note that network settings and Security Groups cannot be copied and must be reconfigured manually in the new environment. | This guide explains how to migrate your resources from the old bwCloud-OS Gen2 environment to bwCloud-OS Gen3. Because the two environments are completely separated, there is no automatic migration path. You will need to manually export your resources from the old cloud, download them locally, and upload them to the new cloud. Please note that network settings and Security Groups cannot be copied and must be reconfigured manually in the new environment. | ||
== Important Prerequisites: Entitlements and Quotas == | |||
The new bwCloud-OS Gen3 will become a paid infrastructure platform. Therefore, it is necessary for each participating university or institution to actively assign the corresponding entitlements to its users. You cannot simply transfer your old projects directly without this authorization. | The new bwCloud-OS Gen3 will become a paid infrastructure platform. Therefore, it is necessary for each participating university or institution to actively assign the corresponding entitlements to its users. You cannot simply transfer your old projects directly without this authorization. | ||
| Line 31: | Line 31: | ||
Details can be found [https://wiki.bwcloud-os.de/index.php/Guide:_Entitlement_%26_Eligibility here]. | Details can be found [https://wiki.bwcloud-os.de/index.php/Guide:_Entitlement_%26_Eligibility here]. | ||
=== Dashboard Login | {| class="mw-message-box mw-message-box-notice" | ||
| style="vertical-align:middle;" | '''ℹ️ Note on Group Projects:''' Currently, there is no established process for complex group projects and their corresponding quota allocation. If you require resources for such a project, we kindly ask for a little more patience until the procedures are fully defined. | |||
|} | |||
== Dashboard Login == | |||
* [https://portal.bw-cloud.org/ Old bwCloud-OS Gen2] | * [https://portal.bw-cloud.org/ Old bwCloud-OS Gen2] | ||
* [https://portal.ul.bwcos.de/auth/login/?next=/%20https://portal.ul.bwcos.de/ New bwCloud-OS Gen3] | * [https://portal.ul.bwcos.de/auth/login/?next=/%20https://portal.ul.bwcos.de/ New bwCloud-OS Gen3] | ||
== Networks == | |||
The new infrastructure includes not only new networks but also new network-related features such as load balancers. You can find an overview [[Networks_Gen3|here]]. | The new infrastructure includes not only new networks but also new network-related features such as load balancers. You can find an overview [[Networks_Gen3|here]]. | ||
| Line 46: | Line 47: | ||
= Transferring Data and VMs= | = Transferring Data and VMs= | ||
There are basically two ways to transfer your data to the new bwCloud: The rsync method over the network and the snapshot method. | There are basically two ways to transfer your data to the new bwCloud-OS (Gen3): The rsync method over the network and the snapshot method. | ||
== Transferring Volumes == | == Transferring Volumes == | ||
| Line 66: | Line 67: | ||
=== Prerequisites === | === Prerequisites === | ||
* Access to both bwCloud-OS environments and | * Access to both bwCloud-OS environments and | ||
* Application Credentials, as described [[Programmatic_Access_and_Automation#Application_Credentials|here]] | * Application Credentials, as described [[Programmatic_Access_and_Automation#Application_Credentials|here]] and | ||
* OpenStack Client installed, as described [[Programmatic_Access_and_Automation#OpenStack_Client|here]] | * OpenStack Client installed, as described [[Programmatic_Access_and_Automation#OpenStack_Client|here]]. | ||
=== Procedure === | === Procedure === | ||
Latest revision as of 09:52, 28 May 2026
| In a Nutshell |
|
General Information
This guide explains how to migrate your resources from the old bwCloud-OS Gen2 environment to bwCloud-OS Gen3. Because the two environments are completely separated, there is no automatic migration path. You will need to manually export your resources from the old cloud, download them locally, and upload them to the new cloud. Please note that network settings and Security Groups cannot be copied and must be reconfigured manually in the new environment.
Important Prerequisites: Entitlements and Quotas
The new bwCloud-OS Gen3 will become a paid infrastructure platform. Therefore, it is necessary for each participating university or institution to actively assign the corresponding entitlements to its users. You cannot simply transfer your old projects directly without this authorization.
- Missing Entitlement? If you have not yet been assigned an entitlement, please get in touch directly with your local institution or university's IT support.
- Quota Allocation: Please note that the allocation of resource quotas is entirely managed and regulated through your respective institution.
Details can be found here.
Dashboard Login
Networks
The new infrastructure includes not only new networks but also new network-related features such as load balancers. You can find an overview here.
Network-specific differences between regions and details about the individual networks can be found in the following guide.
➡️ Guide: Network Configuration by Region
Transferring Data and VMs
There are basically two ways to transfer your data to the new bwCloud-OS (Gen3): The rsync method over the network and the snapshot method.
Transferring Volumes
While it is technically possible to migrate a Cinder volume by converting it to an image and uploading it to the new cloud, we do not recommend this approach. The process is extremely slow, and depending on the backend configuration, the upload may silently fail entirely.
Our recommendation: create a fresh volume and copy your data over the network.
- In the new environment, create a new empty volume of the appropriate size and attach it to a new VM.
- Format and mount the volume on the new VM. Detailed instructions can be found here.
- Make sure your old VM (with the old volume mounted) is reachable from the new VM via SSH (either by exchanging SSH keys or setting a password in the VM).
- Sync your data directly over the network using rsync.
rsync -avz --progress /path/to/old/data/ root@<NEW_VM_IP>:/path/to/new/destination/
Transferring VMs
Prerequisites
- Access to both bwCloud-OS environments and
- Application Credentials, as described here and
- OpenStack Client installed, as described here.
Procedure
When transferring a VM, you create a snapshot of its current state, download it, and use it as a base image in the new environment.
Step 1: Create a Snapshot
First, source your old bwCloud-OS Gen2 credentials and find the ID of the instance (VM) you want to migrate:
source old-creds.sh openstack server list openstack server image create --name <snapshot_name> <instance_id>
Step 2: Download the Snapshot
The Image ID should have been prompted in the previous step. However, it is also possible to find the ID of your created snapshot and download it to your local computer later:
openstack image list openstack image save --file myimage.img <snapshot_id>
Step 3: Upload to the New Environment (bwCloud-OS Gen3)
Source your new cloud credentials and upload the image file. Important: Always set the visibility to Private so other users cannot use your image as a base for their services.
source new-creds.sh openstack image create --file myimage.img --private myimage
Alternative: You can also upload the downloaded .img file using the new Horizon GUI by navigating to Compute -> Images.
Step 4: Start the Instance
You can now start a new instance using this uploaded image. Remember to reconfigure your Security Groups and note that you will receive a new IP address.
To start a new instance:
- Log in to the bwCloud-OS Gen3 Dashboard.
- Navigate to Project --> Compute --> Images. The uploaded snapshot should be listed there.
- Click on "Start", choose an instance name, and select the network and SSH key (or create a new one).