Questions tagged [bitbucket]
A source control system and git hosting site from Atlassian.
49 questions
0 votes
0 answers
13 views
Argocd fails to connect to bitbucket private repo
I am using Https method in argocd to get connected to my private bitbucket repository, I am entering the correct repo url, username and password(generated by App password in bitbucket), but it fails ...
2 votes
2 answers
107 views
How to change Bitbucket User in Azure Pipeline?
A previous engineer set up our Azure pipelines with Bitbucket repositories. He has left the company, his Bitbucket privileges were revoked, so the Azure pipelines can no longer reach Bitbucket. Azure ...
1 vote
1 answer
683 views
bitbucket pipeline to push commits to another repo
So this is the scenario i have right now, we have a repo (boilerplate) that contains our infrastructure code, docker files, and pipeline scripts, each time we create a new project we copy this repo to ...
2 votes
2 answers
131 views
How to incorporate feedback from pull request
I am new to bitbucket. I tried to google it but unable to find exact answer for my question. I created a feature branch. Made few changes in the feature branch then I pushed/committed all the changes ...
1 vote
1 answer
474 views
Building a pipeline to recognize changes in a terraform template compared to the git commit before and having it apply changes using specified command
Looking to get pointed in the right direction: I am trying to build a pipeline that will recognize changes in a remote terraform template that will recognize changes compared to the previous git ...
1 vote
1 answer
555 views
How to get code from Bitbucket via Octopus?
Is there a way that I can tell Octopus to take its code from Bitbucket and not GitHub (without using Bitbucket's pipelines)? I couldn't anything under community steps that would let me do that (...
0 votes
1 answer
220 views
Is it possible to install bitbucket container on Centos?
I'm trying to run the below composefile on centos7: version: "3.3" services: bitbucket: image: atlassian/bitbucket:latest ports: - 7990:7990 - 7999:7999 networks: ...
2 votes
1 answer
218 views
Bitbucket pipelines: Deployment destination dependent on commit author
I'd like to create a deployment pipeline triggered on PR creation that would deploy to e.g. 'staging1' environment if it's my commit and 'staging2' if it's a commit of other team member (the idea is ...