Category Archives: IT Automation

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 …

Continue reading

Posted in AWS, DevOps, IT Automation. Tagged with , , .

RPM – How to Build RPM Package

This article represents tips to build RPM package using rpmbuild command. Please feel free to comment/suggest if I missed to mention one or more important points. Also, sorry for the typos. Following are the key points described later in this article: Install RPMBuild Package Instructions to Create RPMs Install RPMBuild Package Make sure that rpmbuild exists. Type rpmbuild in command line and confirm that usage text appears. In case, rpmbuild does not exists, download it using command, “yum -y install rpm-build” Instructions to Create RPMs Create a top level folder such as “rpmbuild” within home directory. Go to rpmbuild folder using command such as “cd rpmbuild” Create following folder within …

Continue reading

Posted in IT Automation. Tagged with .