Configure Bitbucket Webhook to Trigger Jenkins Builds on AWS EC2

This article represents steps required to configure BitBucket Webhook to trigger Jenkins Builds on AWS EC2 based on code committed in the repository. This essentially means that a code commit in the BitBucket code repository would trigger a build in Jenkins server running on AWS EC2 machine. This forms the starting point of continuous delivery pipeline. The jenkins build, when triggered as a result of code push, could perform tasks such as some of the following:
  • Run the build,
  • Run tests
  • Publish build artifacts in artifactory
  • Deploying the build artifacts in different environments including QA, UAT and production.
Please feel free to comment/suggest if I missed to mention one or more important points. Also, sorry for the typos.
Following are the steps which need to be taken to configure push-based trigger of Jenkins Build:
  • Configure Inbound Rule on Jenkins Server on AWS EC2: One needs to add the inbound rule on Jenkins box on AWS EC2 for following IP: 104.192.143.192/28. This is required to allow requests coming from BitBucket to reach to Jenkins server on AWS EC2. This is BitBucket cloud IP outbound address (for hooks like POST) when inbound IP address for BitBucket is 104.192.143.1. The IP (104.192.143.1) can be figued out by pinging bitbucket.org. The outbound IP address can be found from this page: https://confluence.atlassian.com/bitbucket/what-are-the-bitbucket-cloud-ip-addresses-i-should-use-to-configure-my-corporate-firewall-343343385.html
  • Configure Webhook in BitBucket: One needs to add following URL while creating WebHook in BitBucket: http://jenkins_server_uri/bitbucket-hook/.
  • Configure SCM in Jenkins Project: Next step is to configure Git as Source code management tool within Jenkins Project by clicking on Configure link on project’s dashboard. Following is a sample of input parameter:
    • Repository_URL: https://<bitbucket_user>@bitbucket.org/<bitbucket_user>/<bitbucket_project_name>.git
    • Credentials: Create a credential by providing bitbucket username and password
  • Setup Build Triggers in Jenkins Project: Finally, one would require to setup build triggers for the Jenkins project by clicking on Configure link on project’s dashboard. Check the option “Build when a change is pushed to BitBucket”
Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Recent Posts

Agentic Reasoning Design Patterns in AI: Examples

In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…

1 month ago

LLMs for Adaptive Learning & Personalized Education

Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…

1 month ago

Sparse Mixture of Experts (MoE) Models: Examples

With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…

2 months ago

Anxiety Disorder Detection & Machine Learning Techniques

Anxiety is a common mental health condition that affects millions of people around the world.…

2 months ago

Confounder Features & Machine Learning Models: Examples

In machine learning, confounder features or variables can significantly affect the accuracy and validity of…

2 months ago

Credit Card Fraud Detection & Machine Learning

Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…

2 months ago