OpenStack to OpenStack Migration - Network Migration
Posted on 26th Sep 2025
Posts selection
Posted on 26th Sep 2025
Posted on 5th Sep 2023
You need to apply this patch manually for the code shared below to work seamlessly, including versions 1.4.0 and 1.5.0 of openstacksdk. Lets create our script named "4_security_migration.py," alongside our previous script, we will start by performing the imports in the "cloud_connection.py",...
Posted on 4th Sep 2023
You need to apply this patch manually for the code shared below to work seamlessly, including versions 1.4.0 and 1.5.0 of openstacksdk. Now that our user and project have been created on the newstack, we can proceed to migrate our flavors. When migrating the flavors, we will not only migrate...
Posted on 1st Sep 2023
You need to apply this patch manually for the code shared below to work seamlessly, including versions 1.4.0 and 1.5.0 of openstacksdk. Now that our user has been created on the newstack, we can proceed to migrate our project. During this process, we will not only migrate the project itself...
Posted on 31st Aug 2023
In our previous article, user statuses were as follows: First of all, let's create our connection code as a Python script. For example, name it cloud_connection.py. Then, let's write the following code snippet into this connection file. import pprint import openstack # Initialize PP and turn...
Posted on 30th Aug 2023
To perform the migration process, first, we need to be in an environment where we can connect to both clouds at an admin level. Additionally, considering that the disks and volumes in our cloud to be migrated are on NFS, the environment should also be able to mount these NFS points. Let's proceed st...