Home Technology peripherals It Industry Migrate to Ampere on OCI with Heterogeneous Kubernetes Clusters

Migrate to Ampere on OCI with Heterogeneous Kubernetes Clusters

Feb 08, 2025 pm 12:20 PM

Migrate to Ampere on OCI with Heterogeneous Kubernetes Clusters

Originally published by Ampere Computing.

This post demonstrates an incremental migration strategy for cloud-native applications running on Oracle Cloud Infrastructure Container Engine for Kubernetes (OKE) x86 instances, allowing you to harness the cost and performance advantages of OCI Ampere A1-based instances without a complete application rewrite. We'll use a WordPress LAMP stack application as a practical example. Its modular design simplifies component-by-component migration.

This tutorial focuses on migrating the MySQL database from VM.Standard3.Flex (Intel) nodes to VM.Standard.A1.Flex (Ampere) nodes with minimal downtime. We start with a standard WordPress deployment (using Bitnami Helm charts) on three x86 nodes, incorporating a primary MySQL pod, a secondary replica, and an Apache/PHP WordPress pod. Data persistence is handled by OCI block volume and file storage. Asynchronous replication ensures data consistency.

The migration process involves these key steps:

  1. Adding an Ampere A1 Node Pool: A new node pool is created within the existing OKE cluster, utilizing VM.Standard.A1.Flex instances. Remember to adjust OCPU counts appropriately (an Ampere A1 OCPU is equivalent to two x86 vCPUs).

  2. Migrating MySQL Replicas: Additional MySQL replica pods are deployed onto the new Ampere A1 nodes. This ensures data redundancy and availability on the Arm64 architecture. Replication status is verified to confirm seamless data synchronization. This step is optional but highly recommended for data safety.

  3. Primary Database Failover: The primary MySQL pod is then migrated to an Ampere A1 node. Important Note: This step will cause temporary service interruption. Thorough testing in a non-production environment is crucial before attempting this in production. Always back up your database before proceeding.

  4. x86 Node Decommissioning: After successful validation, the x86 nodes hosting the original MySQL pods can be safely decommissioned.

The final result is a hybrid x86/Arm64 cluster: WordPress containers remain on x86, while the MySQL database runs entirely on Arm64 nodes. This phased approach allows for gradual migration, minimizing risk and maximizing the benefits of Ampere A1's performance and cost-effectiveness. Once this is validated, you can migrate other application components to Arm64.

Migrate to Ampere on OCI with Heterogeneous Kubernetes Clusters

Architectural diagram illustrating the WordPress deployment.

Detailed Steps (Appendix):

The following provides a more detailed breakdown of the deployment and migration process:

1. Deploying the WordPress Application:

  • Create a 3-node OKE cluster using VM.Standard3.Flex instances.
  • Configure Kubernetes access via kubeconfig.
  • Download and customize the values.yaml files for both bitnami/wordpress and bitnami/mysql Helm charts. Adjust settings like passwords, persistence (using OCI block volumes for MySQL and OCI File Storage for WordPress), and node affinity (initially targeting x86). The nodeAffinityPreset within the values.yaml file is key for controlling which nodes the pods are deployed to.
  • Deploy MySQL using helm install.
  • Deploy WordPress using helm install, ensuring pod anti-affinity to prevent co-location with MySQL pods.
  • Verify deployment success using kubectl get pods and kubectl get service.

2. Migrating to Ampere A1:

  • Add an Ampere A1 node pool (VM.Standard.A1.Flex) to your OKE cluster.
  • Adjust the values.yaml for bitnami/mysql to include arm64 in nodeAffinityPreset for secondary replicas (and optionally create multiple secondary replicas for added redundancy). Update using helm upgrade.
  • Verify replication status using mysql> show processlist;
  • Migrate the primary MySQL pod to an Ampere A1 node by updating nodeAffinityPreset in values.yaml to exclusively target arm64. This step requires a brief service outage. Use helm upgrade.
  • Remove the x86 nodes previously hosting MySQL.

Important Considerations:

  • Always back up your database before any significant migration steps.
  • Thoroughly test the migration process in a non-production environment.
  • Monitor resource utilization and application performance throughout the migration.

This incremental approach allows for a smoother, safer transition to the performance and cost benefits of Ampere A1 instances on OKE. Contact Ampere’s sales team or explore their developer programs for further assistance.

The above is the detailed content of Migrate to Ampere on OCI with Heterogeneous Kubernetes Clusters. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CNCF Arm64 Pilot: Impact and Insights CNCF Arm64 Pilot: Impact and Insights Apr 15, 2025 am 08:27 AM

This pilot program, a collaboration between the CNCF (Cloud Native Computing Foundation), Ampere Computing, Equinix Metal, and Actuated, streamlines arm64 CI/CD for CNCF GitHub projects. The initiative addresses security concerns and performance lim

Serverless Image Processing Pipeline with AWS ECS and Lambda Serverless Image Processing Pipeline with AWS ECS and Lambda Apr 18, 2025 am 08:28 AM

This tutorial guides you through building a serverless image processing pipeline using AWS services. We'll create a Next.js frontend deployed on an ECS Fargate cluster, interacting with an API Gateway, Lambda functions, S3 buckets, and DynamoDB. Th

Top 21 Developer Newsletters to Subscribe To in 2025 Top 21 Developer Newsletters to Subscribe To in 2025 Apr 24, 2025 am 08:28 AM

Stay informed about the latest tech trends with these top developer newsletters! This curated list offers something for everyone, from AI enthusiasts to seasoned backend and frontend developers. Choose your favorites and save time searching for rel

See all articles