CI/CD Series - Part 2: How to build a CI/CD pipeline using Bitbucket, Docker, Kubernetes, And Spring Boot? (Step-by-Step Guide)
In the first part of this CI/CD Blog-Series, we used Jenkins as a tool in order to set up a CI/CD pipeline for a containerized (Docker) sample application on Kubernetes. This time we will use a different tool in order to set up a CI/CD pipeline for our sample app: Bitbucket, Spring Boot.
Intro
As mentioned in our previous Blog, various CI/CD tools have emerged in the market recently. Each tool comes up with different features and aspects. Consequently, this CI/CD Blog-Series is introduced in order to investigate the usage of different tools in that area.
If you want to Gain In-depth Knowledge on Spring Boot, please go through this link Spring Boot Training
This post showcases how to enable a simple Spring Boot application for the Banzai Cloud CI/CD flow, build and save the necessary artifacts, and deploy it to a Kubernetes cluster. We have already posted about our CI/CD flow several times, and have set up a few example projects to illustrate how it works; this time we'll show you how to use it with an arbitrary Spring Boot application
This post is the second in the CI/CD Blog-Series and within it we will set up a CI/CD pipeline for a containerized (Docker) application on Kubernetes using Bitbucket as a tool.
Please note that in the Blog, we will use Azure as a provider for our Kubernetes Cluster and a private Docker registry. However, you can use any Kubernetes Cluster/Docker registry that you already have on any provider to complete the steps here. You don’t need to touch the application code. All you have to do is to is to configure the environment variables correctly giving them the suitable values and make some changes in the bitbucket-pipelines.yml file!
Objective
At the end of the post, you should be able to build a CI/CD pipeline for a sample spring-boot java application using one tool “Bitbucket”! The end goal is to automate the following process:
- Build & Compile code.
- Run test cases.
- Build docker images.
- Push/pull images to/from a private docker registry.
- Deploy the app on Kubernetes using Azure as a platform.
Prerequisites
In case you don’t have a kubernetes cluster with a container registry instance on Azure, you can follow the steps mentioned in the section “Create and Configure a Managed Kubernetes Cluster with a Container Registry Instance on Azure” of the previous blog.
Once you have your kubernetes cluster and a container registry instance ready on azure, you need to create a Bitbucket Account in order to automate the workflow.
The sample application code is hosted on Github. A short description of the application can also be found in the previous blog.
Create and Understand the Pipeline
Before we start with that, let’s understand some basics. Bitbucket Pipelines is an integrated CI/CD solution built into Bitbucket, which enables automatic building, testing and deployment of applications. This in turn means that you don’t have to put effort on installation or configuration of additional tools.
A major element of the Bitbucket pipeline is the bitbucket-pipelines.yml file, which contains all the build configurations and needs to be created in the root of your repository. Within that file, you can define different steps, such that each step starts a new Docker container that includes a clone of your repository. Inside each step, you can define a script that contains the list of commands you want to execute in sequence within the step (container).
As Bitbucket relies heavily on build containers, it requires that you build your pipeline in separate steps which in turn leads in creating fine granular pipelines. However, in case you need to exchange some artifacts between the different steps, you have to manage them.
Using Bitbucket, you can easily create a new Repository following these steps:
- In Bitbucket, click the + icon in the global sidebar and select Repository.
- In Create a new repository page, give the repository a Name and pick Git for the Repository type.
- Click Create repository.
Now you need to “git clone” the Bitbucket repository to your local system, add the sample application folder to it, and “git push” the changes to Bitbucket again:
git clone BITBUCKET_URL
git add ––all
git commit -m “COMMIT_MESSAGE”
git push origin master
Let us now have a deep look into the content of the bitbucket-pipelines.yml file! But before we go more into the details, note that all the variables that are written in capital letters are environment variables which take their values by configuring them globally using Bitbucket.
In order to configure any environment variable using Bitbucket, follow these steps:
- Give the Name and the Value of the variable.
- Click on Add.
Note that beside Repository variables, Bitbucket enables you to define Deployment variables which override Repository variables. These variables can only be used in a specific Spring Boot Online Training deployment environment which enables you to have independent deployment variables for each environment.
Now, let’s have a look on the different parts of the bitbucket-pipelines.yml file:
Test the todobackend app with H2 in-memory mode using Maven, by adding the necessary commands inside a script in the step. Note that defining a cache, reduces the load time by downloading the dependencies once to the server and then loading them locally into the build:
# Test with Maven/H2 - step: name: Test with Maven/H2 script: - cd todobackend - mvn test -Dspring.profiles.active=dev caches: - maven
- Test the todobackend app with Postgres DB using Maven. In order to do that, we create a separate docker container for Postgres service, to which the app can connect on localhost. This is done by adding the service definition to the definitions section of the file and referencing it in the step. Note that defining separate docker containers for services will speed up the build and make changing a service easy without having to edit the whole container image. The DB environment variables should be configured in Bitbucket as mentioned above having the following values:
- DB_USERNAME -> user
- DB_PASSWORD -> password
- DB_NAME -> mydb
# Test with Maven/PSQL - step: name: Test with Maven/PSQL script: - cd todobackend - mvn test -Dspring.profiles.active=prod -DPOSTGRES_HOST=localhost services: - postgresdb definitions: services: postgresdb: image: postgres variables: POSTGRES_USER: $DB_USER POSTGRES_PASSWORD: $DB_PASSWORD POSTGRES_DB: $DB_NAME
- Build the application jars, build the docker images and push the images to the docker registry. After the tests have passed, it is the time to use “Maven” to build the code, compile it, package it and put the jar files in the appropriate folders. Then we build the Docker images of the todobackend and todoui apps using the created jar files. After that, we login to the Docker Registry and push the Docker images created before to the registry. Note that he “BITBUCKETBUILDNUMBER” will take its proper value automatically. The Docker environment variables should be configured in Bitbucket having the following values:
- DOCKER_REPOSITORY -> Your Docker Registry URL
- USERNAME/PASSWORD -> Your Docker Registry Credentials
# Build with Maven, Create & Push Docker Images to a Docker Registry - step: name: Build with Maven, Create & Push Docker Images to a Docker Registry script: - cd todobackend - mvn -B -DskipTests clean install - cd .. - cd todoui - mvn -B -DskipTests clean install - cd .. - docker build -f Dockerfile-todobackend -t $DOCKERREPOSITORY/todobackend:v$BITBUCKETBUILD_NNUMBER . - docker build -f Dockerfile-todoui -t $DOCKERPOSITORY/todoui:v$BITBUCKET_BUIBUILDER . - docker login $DOCKER_REPOSREPOSITORY --username $USERNAME --password $PASSWORD - docker push $DOCKERTORY/todobackend:v$BITBUCKET_BUILD_NBUILD - docker push $DOCKER_REPOSITORREPOSITORY/todoui:v$BITBUCKETER services: - docker caches: - docker
- After previous stages have competed successfully, a deployment to kubernetes can be triggered. Bitbucket provides an easy way to configure your Azure deployment using Azure Pipes. All you need to do is to choose the azure aks deploy pipe, configure the necessary variables and provide the kubectl commands you want to execute. The pipe environment variables should be configured in Bitbucket having their values from the created service principal in Azure. For more information about that, refer to the previous blog:The complete K8s deployment steps can be found in the bitbucket-pipelines.yml file in the sample application code on Github.A very important feature that Bitbucket offers is Bitbucket Deployments. It enables you to define different deployment environments and configure your steps to be deployed within specific environments. This in turn helps you to keep track of the status of your deployment environments, and visibility over each environment’s code changes. Note that if you want to use a Kubernetes Cluster on a different provider other than Azure, you have to choose the suitable Bitbucket pipe for your needs and configure it in the bitbucket-pipelines.yml file correctly!
- AZURE_APP_ID -> appId
- AZURE_PASSWORD -> password
- AZURE_TENANTID -> tenant
Now you can start your CI/CD journey! You can change something in your Bitbucket repository and commit it, then the build of the pipeline will start automatically in Bitbucket!
After it finishes, you should see a view similar to this, in which you can see the details of each step along with the Console Output of the build.
Summary
There you go! In this Blogpost, you have successfully created a CI/CD pipeline for a containerized spring-boot java application on Kubernetes using Bitbucket. In Part 3 of this Blog-Series which will follow soon, we will set up a CI/CD pipeline using Concourse CI as a tool.