Using HPA and CA for Auto Scaling of Workloads and Nodes
Application Scenarios
The best way to handle surging traffic is to automatically adjust the number of machines based on the traffic volume or resource usage, which is called scaling.
To prevent pods from using up node resources during peak hours, it is a common practice to specify resource requests and limits for pods during application containerization. However, this approach may encounter a resource bottleneck as an application exception may occur once the upper limit of resource usage is reached. To address this problem, you can scale the pods to distribute the workload. If the node resource usage reaches its upper limit after pods are added and new pods cannot be scheduled, you can scale the nodes based on the node resource usage.
Solution
There are two major auto scaling policies in CCE: Horizontal Pod Autoscaler (HPA) and Cluster Autoscaler (CA). HPA scales workloads, and CA scales nodes.
HPA and CA work together to optimize the resource allocation in a cluster. CA adds nodes to provide enough resources for HPA to scale out pods. When HPA reduces the number of pods in the cluster, CA removes underutilized nodes.
Using HPA together with CA makes it easy to achieve auto scaling, and the scaling process of both nodes and pods can be observed very intuitively. This approach is sufficient for most service scenarios.
This section uses an example to describe the auto scaling process using HPA and CA policies together.
Video Tutorial
Preparations
- Create a cluster with one node. The node should have 2 vCPUs and 4 GiB of memory, or a higher flavor, as well as an EIP to allow external access. If no EIP is bound to the node during node creation, you can manually bind one on the ECS console after creating the node.
- Install add-ons in the cluster.
- CCE Cluster Autoscaler: scales nodes in the cluster.
- Kubernetes Metrics Server: aggregates resource usage data in the cluster. It can collect measurement data for important Kubernetes resources like pods, nodes, containers, and Services.
- Log in to the node and deploy a computing-intensive application. When a user sends a request, the result needs to be calculated before being returned to the user.
- Create a PHP file named index.php to calculate the square root of the request for 1,000,000 times before returning OK!.
vi index.php
The file content is as follows:<?php $x = 0.0001; for ($i = 0; $i <= 1000000; $i++) { $x += sqrt($x); } echo "OK!"; ?> - Write a Dockerfile to build an image.
vi Dockerfile
The content is as follows:FROM php:5-apache COPY index.php /var/www/html/index.php RUN chmod a+rx index.php
- Build an image named hpa-example with the latest tag.
docker build -t hpa-example:latest .
- (Optional) Log in to the SWR console, choose Organizations in the navigation pane, and click Create Organization in the upper right corner.
Skip this step if you already have an organization.
- In the navigation pane, choose My Images and then click Upload Through Client. In the dialog box displayed, click Generate Login Command and click
to copy the command. - Run the copied login command on the node. If the login is successful, the message "Login Succeeded" is displayed.
- Tag the hpa-example image.
docker tag {Image name 1:Tag 1}/{Image repository address}/{Organization name}/{Image name 2:Tag 2}
- {Image name 1:Tag 1}: name and tag of the local image to be pushed.
- {Image repository address}: the domain name at the end of the login command in login command. It can be obtained on the SWR console.
- {Organization name}: name of the created organization.
- {Image name 2:Tag 2}: desired image name and tag to be displayed on the SWR console.
The following is an example:
docker tag hpa-example:latest swr.ap-southeast-1.myhuaweicloud.com/cloud-develop/hpa-example:latest
- Push the image to the image repository.
docker push {Image repository address}/{Organization name}/{Image name 2:Tag 2}
The following is an example:
docker push swr.ap-southeast-1.myhuaweicloud.com/cloud-develop/hpa-example:latest
The following information will be returned upon a successful push:
6d6b9812c8ae: Pushed ... fe4c16cbf7a4: Pushed latest: digest: sha256:eb7e3bbd*** size: **
To view the pushed image, go to the SWR console and refresh the My Images page.
- Create a PHP file named index.php to calculate the square root of the request for 1,000,000 times before returning OK!.
Creating a Node Pool and a Node Scaling Policy
- Log in to the CCE console and click the cluster name to access the cluster. In the navigation pane, choose Nodes. In the right pane, click the Node Pools tab and click Create Node Pool in the upper right corner.
- Configure the node pool.
- Node Type: Select a node type.
- Specifications: 2 vCPUs | 4 GiB
Retain the default values for other parameters. For details, see Creating a Node Pool.
- Locate the row containing the newly created node pool and click Auto Scaling in the upper right corner. For details, see Creating a Node Scaling Policy.
If the CCE Cluster Autoscaler add-on is not installed in the cluster, install it first. For details, see CCE Cluster Autoscaler.
- Customize scale-out rules.: Click Add Rule. In the dialog box displayed, configure parameters. For example, you can configure a rule that when the CPU allocation rate exceeds 70%, each associated node pool will scale out by adding one node. A CA policy must be associated with one or more node pools. When node scaling is required, CA selects the most suitable node flavors from the associated node pools based on the least waste principle.
- Nodes: Change the node quantity range. The number of nodes in a node pool will always be within the range during auto scaling.
- Cooldown Period: a period during which the nodes added to the node pool cannot be scaled in
- Specifications: Configure whether to enable auto scaling for a node flavor in the node pool.
- Click OK.
Creating a Workload
Use the hpa-example image to create a Deployment with one pod. The image address is related to the organization uploaded to the SWR repository and needs to be replaced with the actual value.
kind: Deployment apiVersion: apps/v1 metadata: name: hpa-example spec: replicas: 1 selector: matchLabels: app: hpa-example template: metadata: labels: app: hpa-example spec: containers: - name: container-1 image: ''hpa-example:latest'' # Replace it with the address of the image you uploaded to SWR. resources: limits: # The value of limits must be the same as that of requests to prevent flapping during scaling. cpu: 500m memory: 200Mi requests: cpu: 500m memory: 200Mi imagePullSecrets: - name: default-secret
Create a NodePort Service for the workload so that the workload can be accessed from external networks.
To allow external access to NodePort Services, assign an EIP to a node in the cluster. Then, synchronize node data. For details, see Synchronizing Data with Cloud Servers. If the node already has an EIP assigned, you do not need to assign another one to it.
Alternatively, you can create a Service associated with an ELB load balancer for external access. For details, see Creating a LoadBalancer Service.
kind: Service
apiVersion: v1
metadata:
name: hpa-example
spec:
ports:
- name: cce-service-0
protocol: TCP
port: 80
targetPort: 80
nodePort: 31144
selector:
app: hpa-example
type: NodePort
Creating an HPA Policy
Create an HPA policy. The policy below is associated with the hpa-example workload, and the target CPU usage is 50%.
There are also two annotations. One defines the CPU thresholds. It indicates that scaling is not performed when the CPU usage is between 30% and 70% to prevent impact caused by minor fluctuations. The other defines the scaling time window. It indicates that after a scaling event is successfully triggered, no additional scale-in or scale-out actions occur during the cooldown period to prevent impact caused by short-term fluctuations.
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: hpa-policy
annotations:
extendedhpa.metrics: '[{"type":"Resource","name":"cpu","targetType":"Utilization","targetRange":{"low":"30","high":"70"}}]'
extendedhpa.option: '{"downscaleWindow":"5m","upscaleWindow":"3m"}'
spec:
scaleTargetRef:
kind: Deployment
name: hpa-example
apiVersion: apps/v1
minReplicas: 1
maxReplicas: 100
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 50
Configure the parameters as shown in the figure below if you are using the console.

Observing the Auto Scaling Process
- Check the cluster node statuses. In the following example, there are two nodes.
# kubectl get node NAME STATUS ROLES AGE VERSION 192.168.0.183 Ready <none> 2m20s v1.17.9-r0-CCE21.1.1.3.B001-17.36.8 192.168.0.26 Ready <none> 55m v1.17.9-r0-CCE21.1.1.3.B001-17.36.8
Check the HPA policy. The CPU usage of the target workload is 0%.
# kubectl get hpa hpa-policy NAME REFERENCE TARGETS MINPODS MAXPODS REPLICAS AGE hpa-policy Deployment/hpa-example 0%/50% 1 100 1 4m
- Access the workload. In the command below, {ip:port} indicates the access address of the workload, which can be obtained on the workload details page.
while true;do wget -q -O- http://{ip:port}; done
If no EIP is displayed, the cluster node has not been assigned any EIP. Assign one to the node and synchronize node data. For details, see Synchronizing the Data of Cloud Servers.
Observe the scaling process of the workload.
# kubectl get hpa hpa-policy --watch NAME REFERENCE TARGETS MINPODS MAXPODS REPLICAS AGE hpa-policy Deployment/hpa-example 0%/50% 1 100 1 4m hpa-policy Deployment/hpa-example 190%/50% 1 100 1 4m23s hpa-policy Deployment/hpa-example 190%/50% 1 100 4 4m31s hpa-policy Deployment/hpa-example 200%/50% 1 100 4 5m16s hpa-policy Deployment/hpa-example 200%/50% 1 100 4 6m16s hpa-policy Deployment/hpa-example 85%/50% 1 100 4 7m16s hpa-policy Deployment/hpa-example 81%/50% 1 100 4 8m16s hpa-policy Deployment/hpa-example 81%/50% 1 100 7 8m31s hpa-policy Deployment/hpa-example 57%/50% 1 100 7 9m16s hpa-policy Deployment/hpa-example 51%/50% 1 100 7 10m hpa-policy Deployment/hpa-example 58%/50% 1 100 7 11mAt 4m23s, the CPU usage of the workload reached 190%, exceeding the target value. This triggered workload scaling, increasing the workload to four replicas/pods. Over the next few minutes, CPU usage did not drop. It was not until 7m16s that the CPU usage began to decrease. This is because newly created pods may not start successfully. If resources are insufficient, the pods remain in a pending state while the system is scaling out the nodes.
At 7m16s, the drop in CPU usage indicates that the pods were successfully created and began sharing the incoming traffic. By the 8-minute mark, the CPU usage had fallen to 81%, which is still above the target value and above 70%. This means another scale-out event would occur. At 9m16s, the workload scaled out again to seven pods. At that point, the CPU usage dropped to 51%, which falls within the 30%–70% range, so no further scaling actions were taken. From that point on, the number of pods remained stable at seven.
In the following output, you can see the workload scaling process and the time when the HPA policy takes effect.
# kubectl describe deploy hpa-example ... Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal ScalingReplicaSet 25m deployment-controller Scaled up replica set hpa-example-79dd795485 to 1 Normal ScalingReplicaSet 20m deployment-controller Scaled up replica set hpa-example-79dd795485 to 4 Normal ScalingReplicaSet 16m deployment-controller Scaled up replica set hpa-example-79dd795485 to 7 # kubectl describe hpa hpa-policy ... Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal SuccessfulRescale 20m horizontal-pod-autoscaler New size: 4; reason: cpu resource utilization (percentage of request) above target Normal SuccessfulRescale 16m horizontal-pod-autoscaler New size: 7; reason: cpu resource utilization (percentage of request) above target
Check the number of nodes. The following output shows that two nodes have been added.
# kubectl get node NAME STATUS ROLES AGE VERSION 192.168.0.120 Ready <none> 3m5s v1.17.9-r0-CCE21.1.1.3.B001-17.36.8 192.168.0.136 Ready <none> 6m58s v1.17.9-r0-CCE21.1.1.3.B001-17.36.8 192.168.0.183 Ready <none> 18m v1.17.9-r0-CCE21.1.1.3.B001-17.36.8 192.168.0.26 Ready <none> 71m v1.17.9-r0-CCE21.1.1.3.B001-17.36.8
You can also view the scaling history on the console. Here, you can see that the CA policy was triggered once. When the cluster's CPU allocation exceeded 70%, the number of nodes in the node pool was scaled out from two to three. The other new node was added by the autoscaler's default behavior, which scales based on pods in the pending state during the early phase of HPA scaling.
The node scaling process is as follows:
- After the number of pods increased to four, there were not enough resources available, causing the pods to remain in a pending state. This triggered the autoscaler's default scaling behavior, which added one more node.
- The second node scaling event occurred because the cluster's CPU allocation exceeded 70%, which triggered the CA policy and added another node. This can be seen in the scaling history on the console. Scaling based on CPU allocation ensures that the cluster consistently maintains sufficient resources.
- Stop accessing the workload and check the number of pods.
# kubectl get hpa hpa-policy --watch NAME REFERENCE TARGETS MINPODS MAXPODS REPLICAS AGE hpa-policy Deployment/hpa-example 50%/50% 1 100 7 12m hpa-policy Deployment/hpa-example 21%/50% 1 100 7 13m hpa-policy Deployment/hpa-example 0%/50% 1 100 7 14m hpa-policy Deployment/hpa-example 0%/50% 1 100 7 18m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 18m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 19m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 19m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 19m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 19m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 23m hpa-policy Deployment/hpa-example 0%/50% 1 100 3 23m hpa-policy Deployment/hpa-example 0%/50% 1 100 1 23m
You can see that the CPU usage is 21% at 13m. The number of pods is reduced to three at 18m, and then reduced to one at 23m.
In the following output, you can see the workload scaling process and the time when the HPA policy takes effect.
# kubectl describe deploy hpa-example ... Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal ScalingReplicaSet 25m deployment-controller Scaled up replica set hpa-example-79dd795485 to 1 Normal ScalingReplicaSet 20m deployment-controller Scaled up replica set hpa-example-79dd795485 to 4 Normal ScalingReplicaSet 16m deployment-controller Scaled up replica set hpa-example-79dd795485 to 7 Normal ScalingReplicaSet 6m28s deployment-controller Scaled down replica set hpa-example-79dd795485 to 3 Normal ScalingReplicaSet 72s deployment-controller Scaled down replica set hpa-example-79dd795485 to 1 # kubectl describe hpa hpa-policy ... Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal SuccessfulRescale 20m horizontal-pod-autoscaler New size: 4; reason: cpu resource utilization (percentage of request) above target Normal SuccessfulRescale 16m horizontal-pod-autoscaler New size: 7; reason: cpu resource utilization (percentage of request) above target Normal SuccessfulRescale 6m45s horizontal-pod-autoscaler New size: 3; reason: All metrics below target Normal SuccessfulRescale 90s horizontal-pod-autoscaler New size: 1; reason: All metrics below target
You can also view the HPA scaling history on the console. If you continue to wait, you will see that one of the nodes is scaled in.
The reason why two nodes were not scaled in is that both nodes in the node pool are running pods in the kube-system namespace, and these pods are not DaemonSet pods. For details about the conditions in which nodes will not be removed, see Node Scaling Rules.
Summary
By using HPA and CA, auto scaling can be effortlessly implemented in various scenarios. Additionally, the scaling process of nodes and pods can be conveniently tracked.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot
