×
Community Blog Deploy Docker Image to Alibaba Cloud Container Service: CI/CD Automation on Container Service (3)

Deploy Docker Image to Alibaba Cloud Container Service: CI/CD Automation on Container Service (3)

This article series describes a practical approach of implementing a Continuous Integration and Deployment (CI/CD) lifecycle using Alibaba Cloud Container Service.

By Evan Wong, Solutions Architect

1 Prerequisites

Before going through the step-by-step guides, the user should have the following prerequisites:

  • A decent computer or laptop.
  • A web browser, recommended Google Chrome.
  • A stable internet connection.
  • An Alibaba Cloud account.
  • Basic knowledge of operations of Linux operating systems.
  • A good understanding and basic knowledge of Docker container and the usage of Dockerfile.
  • A fundamental knowledge of Kubernetes.
  • A GitHub account.

2 Resources

This tutorial uses a number of third party resources including the sample application source codes. Special thanks to Satya Depareddy for the application source codes on GitHub -
https://github.com/depareddy/java-webapp-docker

3 Introduction

In the previous article of this series, we discussed the steps to automate the flow of continuous deployment on the cloud. This is the third and final part of the DevOps series that focuses on the deployment strategies on a Kubernetes cluster with Alibaba Cloud Container Service.

4 Rolling Update

This is the default deployment strategy on the Kubernetes cluster. Rolling updates allow Deployments' update to take place with zero downtime by incrementally updating Pods instances with new ones. The new Pods will be scheduled on Nodes with available resources.

This strategy aims to prevent application downtime by keeping at least some instances up-and-running at any point in time while performing the updates. Old pods are only shutdown after new pods of the new deployment version have started-up and became ready to handle traffic.

5 Canary Release

Canary deployment is a pattern for reducing risk involved with releasing new software versions. But in software, releasing canaries can be a strategic tactic for teams adopting continuous delivery practices. The idea is that you'll rollout a new release incrementally to a small subset of servers side by side with its Stable version. Once you test the waters, you can then rollout the changes to the rest of the infrastructure. This effectively exposes new versions to a small set of users, which acts as an early indicator for failures that might happen. Canaries are very handy for avoiding problematic deployments and angry users! If one canary deployment fails, the rest of your servers aren't affected and you can simply ditch it and fix the root cause.

To experience the canary release process in Alibaba Cloud, you would be creating a new image based on the different version of the source codes.

5.1 Create a New Branch

To create a new branch from the tag,

$git branch release-v2.0-branch release-v2.0

5.2 Checkout the Codes from the Branch

Checkout the source codes from the new branch

$git checkout release-v2.0-branch

5.3 Change the Existing Source Code

Go to the home directory of the project source code – java-webapp-docker. Change the directory to src/main/webapp. Open the index.jsp with an editor such as vi or vim. Change the header <h2> to "Welcome to Alibaba Cloud DevOps v2.0" and also change the font of the header to red

<html>
<body>
<h2><font color="red">Welcome to Alibaba Cloud DevOps v1.0</font></h2>
</body>
</html>

5.4 Commit Changes and Create New Tag

Add the file to the Git for commit by typing:

$git add index.jsp

Then, to commit the code to the repository:

$git commit -m "changed header text"

5.5 Create a New Tag

To delete the previous tag, type

$git tag -d release-v2.0

To create a new tag, type

$git tag release-v2.0

5.6 Push Tag to Remote Repository

Delete and recreate the tag remotely

$git push origin :release-v2.0

To create the new tag

$git push origin release-v2.0

Go back to the Container Registry->Build page to check out the latest build of the image. If the build is successful, the latest image with tag 2.0 should appear on the list.

1

Next, we would need to create a new deployment for the image to the Kubernetes cluster.

5.7 Create New Deployment

Go to the Container Service -> Deployment page. Click on the "Create by Template" button.

2

Refer the YAML script, modify the image URL based on your private registry image URL.

In case if you cannot remember the URL of the image registry, go to the Container Registry details page and copy from the VPC link.

3

Paste the following YAML script onto the template and click Deploy.

4

5.7.1 YAML deployment script

apiVersion: apps/v1beta2 # for versions before 1.8.0 use apps/v1beta1
kind: Deployment
metadata:
  name: simplewebapp-v2
  labels:
    app: simplewebapp-default
spec:
  replicas: 1
  selector:
    matchLabels:
      app: simplewebapp-default
  template:
    metadata:
      labels:
        app: simplewebapp-default
    spec:
    #  nodeSelector:
    #    env: test-team
      containers:
      - name: simplewebapp-default
        imagePullPolicy: Always
        image: registry-intl-vpc.ap-southeast-3.aliyuncs.com/evanwong/simplewebapp:2.0
        ports:
        - containerPort: 8080

Once it is successfully deployed, the new version of the deployment will be appeared on the Deployment list.

5

Go to the Pods section, there would be a new pod running. This new pod is based on the latest image with the version 2.0.

6

5.8 Test Canary Release

Use the terminal and type the below command, replace the URL of the endpoint with your IP address of the Load Balancer external endpoint. The URL can be found on the Container Service->Discovery and Load Balancing->Service.

7

$for x in {1..10}; do curl <URL of the LB endpoint>/simplewebapp; done

The result will appear as below. The response would be the output from Pods that have different version of codes. This is because the load balancer is distributing the request to the Pods averagely.

8

To distribute the load to the new image (2.0), you could increase the number of replicas on the deployment, to do this navigate to the Deployment. Click more->YAML to open up the YAML script file. Change the replicas attribute to more than 1, e.g. 10. Click update.

9

Check out the number of Pods, the new Pods based on version 2.0 would appear more than 1.

10

Go to the terminal and do another round of CURL command. There would be more responses output from the new Pods.

$for x in {1..10}; do curl <URL of the LB endpoint>/simplewebapp; done

11

6 Gray Release and Blue-Green Deployment

This section describes how to implement a gray release and a blue/green deployment by using the Ingress function provided by Alibaba Cloud Container Service for Kubernetes.

With a gray release or a blue/green deployment, you can create two identical production environments for the latest version of the target software and an earlier version. Then you can apply specific rules to reroute traffic from the earlier version to the latest version without affecting the software of the earlier version. After the software of the latest version has run without exceptions for a specified period, you can reroute all traffic from the earlier version to the latest version.

A/B testing is a type of comparative and incremental gray release. Specifically, with A/B testing, you can keep some users using the service of an earlier version, and reroute traffic of other users to the service of the latest version. If the service of the latest version runs without exceptions for the specified period of time, then you can gradually reroute all user traffic to the service of the latest version.

6.1 Scenarios

6.1.1 Scenario 1

For example, assume that Service A already runs online to provide an externally accessible Layer-7 service, and a new version of this service with new features, namely, Service A', is developed. You want to release Service A', but you do not want it to directly replace Service A at once. Additionally, you want the client requests of which the request headers contain foo=bar or the cookies contain foo=bar to be forwarded to Service A'. Then, after Service A' has run without exceptions for a specified period, you want to reroute all traffic from Service A to Service A', and then smoothly bring Service A offline.

12

6.1.2 Scenario 2

For example, assume that an earlier version of a service, named Service B, is running online to provide an externally accessible Layer-7 service. However, it has known problems. A new version, namely Service B' is developed with the problems fixed and you want to release this latest version. However, you initially want to reroute only 20% of all client traffic to Service B'. Then, after Service B' has run without exceptions for a period, you want to reroute all traffic from Service B to Service B', and then smoothly bring Service B offline.

13

To meet the preceding application release requirements, Alibaba Cloud Container Service for Kubernetes uses the Ingress function to provide the following four methods of traffic distribution:

In A/B testing

  • Distribute traffic according to the request header
  • Distribute traffic according to the cookie
  • Distribute traffic according to the Query Param

In a blue/green deployment

  • Distribute traffic according to the service weight

6.2 Create Service

Before we create the ingress, first we would need to create two NodePort services for v1 and v2 respectively. Go to the Container Service->Service page and click Create button.

Key in the name of the service, choose NodePort and choose simplewebapp-default from the drop-down box. Enter 80 for service port and 8080 for container port, leave the NodePort and choose TCP as protocol.

14

Create another service for the version 2.

15

6.3 Create Ingress

Navigate to Container Service->Ingress. Click on Create button to create a new ingress.

16

On the pop-up screen, key in the following details and click Create.

Notes:

  • On the domain name, the Container Service has provided the default domain name which is *.ca58e4d5834804a40b0723004c3c11370.ap-southeast-3.alicontainer.com/simplewebapp/. You could use your own custom domain as well.
  • Path: simplewebapp
  • On service, choose the existing NodePort services – simplewebapp-v1 and simplewebapp-v2

17

After the ingress is created, the new ingress should appear on the landing page as below

18

To view the website, simple copy the link on the rule, replace the * with the username that was used to activate the service earlier.

19

At this stage, even though there are two services created for this ingress but if the website is refreshed, it would only send the request to the version 1.0 application. This is because the service weight is not enabled.

In order to distribute the load to both versions, you would need to enable the service weight. To do that, click update on the ingress. On the pop-up dialog, check the Service Weight enable checkbox. To distribute the load evenly, set the weight on each of the service to 50.

20

Now, the requests would be forwarded to the both version in a random manner. In ingress, you could also specify rules to match to a certain service. For e.g., if the query param matches the criteria, it will forward the request to the service.

Go back to the ingress page and click Update. On the pop-up dialog, add gray rule set, select the simplewebapp-v2 as the service, choose Query as type, choose Value match as matching rules and key in 2 as match value.

21

Refresh the URL on the browser, now the header text should be coming from the application v2. The response could be output from the application v1 due to the service weight enabled for 50/50. If there is a need to only forward request to the new version (v2), the weight on the simplewebapp-v1 should be reduced to 0.

22

0 0 0
Share on

Alibaba Clouder

2,605 posts | 747 followers

You may also like

Comments