Blog

Posts selection

OpenStack to OpenStack Migration - Network Migration

Posted on 6th Sep 2023

Here lies an unfinished tale of how a grueling OpenStack migration was completed. My personal computer's SSD could not endure the burden and reached its final write cycle before the story could be told. In loving memory of the Hi-Level HLV-SSD30ULT/120G, which punched well above its weight and put u...

OpenStack to OpenStack Migration - Security Migration

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",...

OpenStack to OpenStack Migration - Flavor Migration

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...

OpenStack to OpenStack Migration - Project Migration

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...

OpenStack to OpenStack Migration - User Migration

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...

OpenStack to OpenStack Migration - Preparation

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...