×
Community Blog A Better Way To Do DevOps On Alibaba Cloud - Friday Blog Week 48

A Better Way To Do DevOps On Alibaba Cloud - Friday Blog Week 48

Learn how to build a working CI/CD pipeline on Alibaba Cloud using "DevOps Flow", Alibaba Cloud's new CI/CD tool.

By: Jeremy Pedersen

For years, one of my biggest pet peeves was Alibaba Cloud's lack of a real CI/CD solution.

Google Cloud had Cloud Build. AWS had CodePipeline and CodeBuild. Heck, even Microsoft Azure had a CI/CD suite, Azure Pipelines!

Where did that leave Alibaba Cloud? Well...if you were a Chinese user on aliyun.com, you could run your builds with "Yun Xiao" (云效). It was a nice tool, but it wasn't available on alibabacloud.com and didn't have an English interface.

But things are different now.

Alibaba Cloud now has a fully functional CI/CD tool, Alibaba Cloud DevOps Pipeline (Flow).

In this week's blog, we'll dive into "Flow" and try building our own pipeline.

To keep things simple, we'll be using a VM-based workflow: this way we won't have to go out of our way to set up other tools like Container Registry or Alibaba Cloud Container Service. I want to stay focused on the build process, not other tooling!

Setting Up A Pipeline

Our first order of business is to log into the Flow console and create a new pipeline. Note that the first time you do this, you may have to fill in a form with your "team name" and "organization size". Once in the console, we can move on to creating a pipeline:

01_create_pipeline.png

We'll use one of the existing templates, designed to build and deploy a Java application on an ECS VM:

02_choose_pipeline_type

Creating A Code Source

The very first thing we need to do is link our pipeline to a "code source". This is a Git repository which will be used to trigger builds:

03_add_source

We can link to a GitHub repository, or to a private Git repository somewhere else (like a GitLab instance). In my case, I will be linking to GitHub.

Of course, this immediately creates a new problem: we need some Java code for our pipeline to build!

To keep things simple, I'll be using the Spring Boot project from this tutorial, which builds a simple web application.

Feel free to go through that tutorial in detail, if you are interested in learning about Spring Boot. If not, just clone into the repository provided in the tutorial with:

git clone https://github.com/spring-guides/gs-spring-boot.git

Then copy all the content from gs-spring-boot/complete into your own GitHub repo under your own account.

Once you've copied that code over, build and test the project with:

./gradlew bootRun

Or, if you are more of a Maven person:

./mvnw spring-boot:run

Note: You'll need a working Gradle or Maven install, and of course Java. Otherwise, you can't test anything locally!

If your project builds and runs successfully, you should see something like this (if you are using Gradle, like me):

04_terminal

Try running curl localhost:8080 in a separate terminal window to make sure your Java app is up and running:

05_terminal

Don't forget to push all this up to GitHub! In my case, I created a temporary repository (don't go looking for it, it's already gone!) to hold the project.

Setting up the code source is straightforward. First, we need to "Associate" our GitHub account with Flow:

06_code_source

This will open another tab (you'll need to be logged into GitHub for this to work). GitHab will ask you to confirm the authorization:

07_code_source

You can now go back to the Flow console. You should be able to see your repositories. Choose the one that holds the Java app you'll be deploying:

08_code_source

For the code scan, unit test, and build steps, we can leave everything at the defaults for now:

09_defaults

In a real world project, you'd likely be adding lots of additional elements here to run unit tests, test your builds, and so on. For today's blog, we will keep it simple and leave things as-is.

Creating An ECS Instance

We need somewhere to deploy our code once it's built. Let's create an ECS instance for this purpose.

There will be a few requirements to make sure everything works correctly:

  1. The instance needs to have a recent version of Java installed
  2. The instance should have a public IP address assigned
  3. The instance should be in a Security Group which opens up port 8080 (the default port used by our Spring Boot web application)

I set up an instance in Singapore that meets these requirements:

10_ecs_setup

I'll use Alibaba Cloud Linux (Aliyun Linux):

11_ecs_setup

We need to make sure the instance has a public IP assigned:

12_ecs_setup

We also need to open port 8080 (the default port that our Spring Boot app will be listening on):

13_ecs_setup

14_ecs_setup

Great! Now that our instance is up and running, we need to install Java.

Let's find the instance's public IP, SSH in (you'll need your instance's SSH Key or Password for this part), and run the installation:

14_1_ecs_setup

Once logged in, run:

yum install java

Great, now we can move on to setting up the "Deploy" stage in our pipeline.

Setting Up A Deployment Group

The first thing we need to do is create a "deployment group". This is a group of one or more ECS instances where our application will be deployed each time we run the pipeline:

15_deployment_group

Choose the region where your ECS instance is located, then select it from the list:

16_deployment_group

See that blue button in the screenshot above? The one that says "Create Service Authorization"? If you haven't used Flow before, you'll need to click on that to create a new RAM role, which will allow Flow to talk to the ECS service. Otherwise, no ECS instances will show up in the "Available Servers" list.

After clicking "Next", you'll need to give your new Server Group a name:

16_1_deployment_group

You can accept the defaults for "Artifact", "Download Path", and "Execute User".

17_deployment_group

One thing we do need to change is the Deployment Script field, just visible at the bottom of the above screenshot.

Here's a clearer picture:

18_deployment_group

For easy copy-pasting, here's that script:

tar xvzf /home/admin/app/package.tgz -C /home/admin/app
java -jar /home/admin/app/spring-boot-complete-0.0.1-SNAPSHOT.jar &

Running The Pipeline

With our configuration done, we can now run the pipeline!

19_pipeline

We can see the progress of each stage:

20_pipeline

We can also click on "Logs" to see the current state of running jobs:

21_pipeline

Our build is very simple, so within a few minutes all pipeline stages should complete without errors:

22_pipeline

We can now visit our ECS instance's public IP. We should see a working web server on port 8080!

22_1_pipeline

That's it! We have a working build pipeline!

Next Steps

Try changing your code. Maybe update HelloController.java as shown here:

23_update_code

Rerunning your pipeline should then show your new site:

24_rerun_pipeline

25_newsite

Warning: You might have to update your deployment script to kill the previous "java -jar" process! Otherwise when the deploy script runs, it could fail (since port 8080 will still be in use!).

That's all for this week. See you next time!

I've Got A Question!

Great! Reach out to me at jierui.pjr@alibabacloud.com and I'll do my best to answer in a future Friday Q&A blog.

You can also follow the Alibaba Cloud Academy LinkedIn Page. We'll re-post these blogs there each Friday.

Not a LinkedIn person? We're also on Twitter and YouTube.

0 0 0
Share on

JDP

71 posts | 152 followers

You may also like

Comments