×
Community Blog Deploy Magento on Alibaba Cloud Container Service for Kubernetes (ACK)

Deploy Magento on Alibaba Cloud Container Service for Kubernetes (ACK)

This article focuses on deploying Magento on Alibaba Cloud Container Service for Kubernetes (ACK).

Preface

This article is from Alibaba Cloud Advent Calendar 2023, focusing on launching services with Alibaba Cloud's Kubernetes and Serverless products like SAE.

I have been actively working on solutions, development techniques, and deployments by Alibaba Cloud, continuously striving to acquire cutting-edge technology from China and around the world.

The Advent Calendar serves as a platform to share these activities with the outside world. Through the articles written by each member, our goal is to generate interest in Alibaba Cloud among as many people as possible.

This article focuses on deploying Magento on Alibaba Cloud Container Service for Kubernetes (ACK).

Magento is a popular open source EC platform. Available as an open source version with all necessary e-commerce features included, Magento is easy to use for both small startups and large websites and has a strong track record.

Returning to the main topic. We are going to deploy Magento to Alibaba Cloud Container Service for Kubernetes (ACK). Why ACK? Because I want to compare the procedure with deploying Magento to the Serverless App Engine, which is scheduled for publication later. Furthermore, ACK will undergo performance and scalability testing as a container application management service.

About This Tutorial

Intended Audience

This tutorial is intended for people who have basic knowledge about the following services:

  • Magento, Kubernetes, and Helm
  • Alibaba Cloud and ACK

Prerequisites

  • An Alibaba Cloud account is created.
  • ACK and dependency products are activated.
  • An Elastic Compute Service (ECS) instance is created for the working environment. (You can choose an OS based on your business requirements. In this example, CentOS is used.)

Prepare a Kubernetes Cluster

From the top of the Alibaba Cloud Management Console, go to the Container Service for Kubernetes console.

As ACK was never activated with the account before, the following message appears.

1

Click Go to RAM console to authorize the RAM role.

2

The Container Service for Kubernetes console is then displayed. The real work starts here.

3

Click Create Kubernetes Cluster on the right. On the Managed Kubernetes tab, follow the configuration shown below. If you use internal connections, the cluster must be in the same VPC as the working environment.

4
5
6
7
8

With this configuration, click Create Cluster to create a cluster. It is in the initialization status, so wait for a while.

9

After a while, the cluster is successfully created, and the status becomes Running. The time needed for the creation depends on the number of nodes.

10

Prepare kubectl and Helm in the Working Environment

Log on to the working environment and install kubectl and Helm. Since CentOS is used, refer to Install and Set Up kubectl on Linux and Installing Helm for the installation commands as they are entered.

$ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
$ sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
$ kubectl version --client

11

The Helm version can also be changed based on the description on the Helm release page.

$ wget https://get.helm.sh/helm-v3.7.1-linux-amd64.tar.gz
$ tar -zxvf helm-v3.7.1-linux-amd64.tar.gz
$ mv linux-amd64/helm /usr/local/bin/helm
$ helm version

12

Create a Namespace in the Cluster

Create a namespace for deployment in the cluster. Name it magento.

13
14
15

Connect to the Cluster from the Working Environment

Configuration can be performed from the working environment, such as obtaining authentication information and configuring to connect to the cluster.

Go to the Connection Information tab on the Cluster Information page, and click Generate Temporary kubeconfig to create credentials for the temporary connection configuration of kubectl.

For more information, see Obtain the kubeconfig file of a cluster and use kubectl to connect to the cluster. The description in the Help document may be more detailed than this one.

If you want to use public access, refer to Control public access to the API server of a cluster.

16
17
18

Copy the credentials created and add them in the working environment. For CentOS, they are pasted to /root/.kube/config.

19

Use the kubectl command to verify the connection.

$ kubectl get namespace
$ kubectl get pods
$ kubectl get pods -n magento

20

Since the connection is working, move on to the next step. Set the context in which Helm connects to the cluster.

kubectl config current-context
kubectl config set-context magento --namespace magento

21

After that, in the working environment, Helm will be used to work with ACK.

Install Magento with Helm Charts

Add the required repository in Helm.

$ helm -n magento repo add bitnami https://charts.bitnami.com/bitnami
$ helm -n magento repo list

22

WARNING: Kubernetes configuration file is group-readable. This is insecure. Location: /root/.kube/config
WARNING: Kubernetes configuration file is world-readable. This is insecure. Location: /root/.kube/config

If the above warning message is displayed, the permissions for the configuration file need to be updated.

$ chmod g-r /root/.kube/config
$ chmod o-r /root/.kube/config

23

Deploy Magento with Helm

Next, deploy Magento with Helm if the work so far is successful.

$ helm -n magento install magento-demo bitnami/magento

24

Check what happened on the ACK side. In the Container Service for Kubernetes console, make sure the resource is deployed.

25

It can be seen that the deployment has been successfully reflected. Return to the working environment and run the related commands listed. It takes several minutes for the IP address of Load Balancer to become available.

26
27

Well, the last 2. Complete your Magento deployment by running: seems to be having an error.

Check the repo on dockerhub.

28

This time, to address Error: version is explicitly required for OCI registries in 2. Complete your Magento deployment by running:, we'll explicitly specify the chart version of Helm.

$ helm upgrade magento-demo oci://registry-1.docker.io/bitnamicharts/magento --version 24.1.2 --namespace magento --set magentoHost=$APP_HOST,magentoPassword=$APP_PASSWORD,mariadb.auth.rootPassword=$DATABASE_ROOT_PASSWORD,mariadb.auth.password=$APP_DATABASE_PASSWORD

29

Now it has been solved. Check the status of the Pod in the namespace magento in the console. 0/3 nodes are available: pod has unbound immediate PersistentVolumeClaims. , preemption: 0/3 nodes are available: 3 Preemption is not helpful for scheduling.. Do you see an error message?

When we check the Persistent Volume Claims (PVC) and PV from the terminal, we can see that the PVC is not bound.

$ kubectl get pvc
$ kubectl get pv

30

Check the storage class for Magento creation.

$  kubectl get pvc -n magento

Reviewing the details in the storage class list revealed that the storage class was not specified for data-magento-demo-elasticsearch-data-0 or data-magento-demo-elasticsearch-master-0.

$  kubectl describe pvc data-magento-demo-elasticsearch-data-0 -n magento
$  kubectl describe pvc magento-demo-elasticsearch-master-0 -n magento

31

The author was also a bit stuck as well and it kept him puzzled for a while, but this was caused because the default PV type of Helm charts is not accepted by Alibaba Cloud. The PVC information in the console needs to be manually updated.

Check the PVC status in the console. All required PVCs are in the Pending status, and the PV type is not recognized.

32

Check the storage classes supported by the cluster.

33

Based on this information, check the data-magento-demo-elasticsearch-data-0 YAML file. Apparently storageClassName: AliCloud-disk-ssd wasn't added, so add it and update.

34
35

Repeat this for data-magento-demo-elasticsearch-master-0, data-magento-demo-mariadb-0, and magento-demo-magento.

36

For more information about this task, see Use a dynamically provisioned disk volume.

Return to the Pods list and wait until all the Pods are in the Running status.

37

On the Services page, obtain the URL of the Magento service.

38

Paste the URL above to the web browser to display the page.

39

Then, append /admin to the URL by default to go to the administrator management page.

40

In the working environment console, use the command to obtain the generated password and log on.

41

You are in Magento now.

42

Conclusion

I ran into some issues with PVC and PV, but Alibaba Cloud's Container Service for Kubernetes (ACK) fully supports Kubernetes and is flexible and scalable, so I was able to customize it to resolve these problems smoothly. I was able to launch the Magento service within an hour of launching the cluster. This showcases the strength of Alibaba Cloud's Kubernetes. If you're looking to effortlessly launch Magento, give it a try.


This article is translated from Qiita.

Disclaimer: The views expressed herein are for reference only and don't necessarily represent the official views of Alibaba Cloud.

0 1 0
Share on

H Ohara

12 posts | 0 followers

You may also like

Comments

H Ohara

12 posts | 0 followers

Related Products