Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Looking for help with understanding BITBUCKET Pipelines For beginners.

Hello All, 

 

It is first time i am working on CICD and our team wants to use bitbucket pipelines for the project. 

As i have very limited knowledge with CICD and Docker to create bitbucket pipelines, it is challenging to find better resources on the bit-bucket pipelines. 

I request the team to recommend me any video series to help beginners like me to understand more about bitbucket pipelines and how to use them and other suggestions would also help me. 

 

Thank you, 

Neehar 

1 answer

1 accepted

0 votes
Answer accepted
Patrik S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Oct 27, 2022

Hello @Neehar ,

Welcome to Atlassian Community

The Bitbucket Pipelines platform allows your team to run your build/test/deploy inside a docker container. Essentially, we create containers in the cloud for each of your build steps, and inside these containers you can run commands, as you would normally do in your local machine, but with the advantages of a fresh system, customized and configured for your needs.

You can check out the below documentation for more details on how to get started with the Bitbucket Pipelines :

When you are creating your first pipeline in Bitbucket, you can use one of our several templates that cover a variety of technologies and languages such as NodeJS, PHP, Java, Python, and .NET Core.

You're also welcome to take a look at the Configure bitbucket-pipelines.yml documentation, which covers all the available options you can use when configuring your pipeline.

Hope that helps! Let me know if you have any questions.

Thank you, @Neehar .

Kind regards,

Patrik S

Thank you for the reply. 

The information is very helpful.

Is there any video series on bitbucket pipelines?

Rob Horan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 29, 2022

Would this be useful?

https://youtu.be/ibiusir3jaM

THANKS @Rob Horan & @Patrik S  Very Helpful. 

 

Any implementations of mutli branch pipeline examples ?

Like Rob Horan likes this
Patrik S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Nov 01, 2022

Hello @Neehar ,

Here's an example of different pipelines for each branch : 

image: node:10.15.0

pipelines:

  default:

    - step:

        script:

          - echo "This script runs on all branches that don't have any specific pipeline assigned in 'branches'."

  branches:

    main:

      - step:

          script:

            - echo "This script runs only on commit to the main branch."

    feature/*:

      - step:

          image: openjdk:8 # This step uses its own image

          script:

            - echo "This script runs only on commit to branches with names that match the feature/* pattern."

We also have this documentation with details about all the pipeline triggers available: 

Thank you, @Neehar !

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events