Post-migration checklist for Orka 2.4.x to 3.0.0: update to the orka3 CLI, configure user access via Customer Portal, and set up Web UI authentication.
What do you need to do after the migration from 2.4.x to 3.0.0 completes?Although Orka 3.0.0 provides some backward compatibility and ensures that multiple environment features persist, you might need to complete the following list of tasks to ensure that you can benefit from all available features and improvements after migrating from Orka 2.4.x to Orka 3.0.0.
MacStadium Customer Portal account administrators must handle the post-migration user management.All team members who need to be able to access the cluster must be among the users of your MacStadium Customer Portal account. All team members must be in the Admin or Tech role. Customer Portal account administrators might need to invite additional team members. Users might need to complete the invitation process.
If you prefer to use the Orka Web UI, you need to get an authentication token for it.You can use a user token (duration: 1 hour) or a service account token (duration: 1 year or custom).
Copy
Ask AI
orka3 user get-token OR orka3 sa create <SERVICE_ACCOUNT_NAME> && orka3 sa <SERVICE_ACCOUNT_NAME> token
MacStadium will gradually roll out updates to the Orka CI/CD integrations. If a new version becomes available, consider upgrading the respective integration.
Create service accounts for your CI/CD integrations
CI/CD integrations will continue to work out-of-the-box after the migration.MacStadium will gradually roll out updates to the Orka CI/CD integrations. To avoid future issues, you need to update your CI/CD integrations to the latest available version. After you upgrade your CI/CD integrations to Orka 3.0.0, you need to create dedicated service account tokens for your tools and re-configure them to use the updated authentication method.
Copy
Ask AI
orka3 sa create <SERVICE_ACCOUNT_NAME> [--namespace <NAMESPACE>]
Re-create sandboxed nodes and redeploy custom pods
Orka 3.0.0 introduces a new way to handle sandboxing. First, you need to create a dedicated namespace with enabled custom pods. Next, you need to move one or more nodes to that namespace. You also need to provide access to the namespace to all users and service accounts that require access.
After that, you can re-create your custom pods. For any custom pods you need to re-create, add the following toleration to the pod. Provide the name for the sandbox namespace under value.YAML
Although all VM tags persist in the respective VM configurations, all node tags are removed during the migration. You need to manually re-apply them. Note that you can apply only one tag at a time. To apply multiple tags to a node, you need to run the command multiple times.
Re-create user and node grouping (node dedication)
Orka 3.0.0 introduces a new way to handle resource dedication - via namespaces. For more information, see Orka Cluster: Manage Access to Resources.First, you must create a namespace that you will isolate for one or more users. Next, you need to move nodes to this namespace. This lets you dedicate the resources in the namespace to the respective users. You must also add the respective users or service accounts as subjects to the role binding for the namespace.
Moving to Orka 3.0.0 removes all deployed VMs but retains all VM configurations. You need to manually re-deploy all VMs that you want to use from the respective VM configurations.Note that after the migration, you will see all VM configurations for all users on the cluster. You will also begin to see all VMs for all users in the respective namespace.
Copy
Ask AI
orka3 vm deploy --config <VM_CONFIG_NAME> [--namespace <NAMESPACE>]
You must update existing Apple silicon-based images stored locally in the cluster to use Orka VM Tools 3.0. Remote images are already upgraded to use Orka VM Tools 3.0.First, deploy a VM using the image that you want to update. Next, connect to the VM via SSH and upgrade the local installation of the Orka VM Tools. Finally, commit the changes to the image.
Copy
Ask AI
orka3 vm deploy --image <IMAGE_NAME> ssh <macOS_user>@<VM_IP> -p <SSH_PORT> brew upgrade orka-vm-tools exit orka3 vm commit <VM_NAME>
(Optional) Remove/re-configure VM configurations or images that you no longer need
After the migration, you will begin to see all VM configurations for all users on the cluster. You might want to clean up the cluster from unneeded VM configurations and images.
Custom automation around the basic scenario should be backward compatible and continue working out of the box after the migration. However, you might need to re-work more complex custom automation that relies on deprecated or changed features.Use the 2.4.x to 3.0.0: CLI Mapping and 2.4.x to 3.0.0: API Mapping to figure out how to migrate your custom automation to Orka 3.0.0.