Hi,
Does anyone have an experience with moving from Jenkins to bitbucket pipelines?
I would like to know about the transition, advantages, disadvantages, issues that raise in the middle or others.
Thanks,
Limor
Using Bitbucket Pipelines, you have your CI/CD process codified - meaning you benefit from a documented process that sits with the code itself, as well as any code review/PR process you have configured
Depending on your architecture, one of the downsides can be moving away from the Jenkins controller/agent model if you're not using containers or similar. If your Jenkins setup has a remote agent pulling code/artifacts from your Bitbucket repo, then copying files around (say in to your web server doc root) then achieving the same via Bitbucket pipelines would mean something like allowing remote access (ssh/sftp etc) to that server which may not be possible/advisable. With Bitbucket pipelines, it'd be ideal to run any tests, build artifacts then package what's needed in to a more Cloud native approach (build and deploy a new container revision, deploy a zip to S3 which triggers a deployment action within AWS or something).
CCM
Recommended Learning For You
Level up your skills with Atlassian learning
Atlassian DevOps Essentials
Learn to manage the product lifecycle by building, automating, and improving processes with Atlassian's approach to DevOps.
Jira Automation
Reduce project complexity and optimize your team's processes through the power of automation.
Bitbucket Pipelines Configuration
Build better software and release more often by learning how to implement a CI/CD solution with Bitbucket Pipelines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.