Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how we can achive trigger-pipeline using BitBucket pipeline with repository under VPN

abhishek.singh April 18, 2022

Hi 

We want trigger a BitBucket pipeline through another BitBucket pipeline. but our BitBucket repo  restricted with VPN(we can access only through vpn)

1 answer

2 votes
Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 18, 2022

Hi @abhishek_singh

Thank you for reaching out to the community.

When you trigger a Pipelines build from another Pipelines build, would it be possible for you to confirm if you're using the Pipes script atlassian/trigger-pipeline or you're using an API endpoint manually?

Regards,
Mark C

abhishek.singh April 19, 2022

Hi @Mark C 
we are using API endpoint
using below script we want to trigger another  bitbucket pipeline

#!/bin/bash
client_id="XXXXYYYYZZZ
secret="xxxyyyzz"
access_token=`curl -X POST https://bitbucket.org/site/oauth2/access_token   -d grant_type=client_credentials   -u  $client_id:$secret | jq  '.access_token'`
curl -X POST -is -u  $client_id:$secret \
   -H "Authorization: Bearer $access_token" \
  -H 'Content-Type: application/json' \
 https://api.bitbucket.org/2.0/repositories/xyz/ \
 -d '{
  "target": {
    "ref_type": "branch",
    "type": "pipeline_ref_target",
    "ref_name": "master"
  },
  "variables": [
      {
        "key": "file",
        "value": "testFile"
      }
    ]
}'
abhishek.singh April 22, 2022

Hi @Mark C

Any solution ?

Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 25, 2022

Hi @abhishek_singh

In your second CURL POST command, could you try removing the "-u $client_id:$secret" part?

curl -X POST -is -u $client_id:$secret \ ..........

I do believe it won't be necessary because you're using an authentication bearer (access token) in this case. After that, try it again.

If the issue still persists, you can try using the Pipes script atlassian/trigger-pipeline instead of using the CURL command.

Let me know how it goes.

Regards,
Mark C

abhishek.singh April 25, 2022

HI @Mark C ,

I'm not able to trigger bitbucket pipeline from another bitbucket pipeline because of vpn restrictions.
How to achieve this task without removing vpn security

Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 27, 2022

Hi @abhishek_singh

For us to further check, would you be able to share the error message you're getting when you try to use the CURL command and the Pipes script atlassian/trigger-pipeline?

Regards,
Mark C

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events