How to add account credentials for the Jenkins BitBucket branch source plugin?

I am trying to configure CloudBees Bitbucket Branch Source Plugin , but I can not set credentials. I added credentials for username and password, but the dropdown is still empty.

I am using a new installation of Jenkins version 2.9 with the original plugin version of Bitbucket version 1.5.

enter image description here

Here are the credentials I added. I also added the SSH username with the private key in an earlier attempt. enter image description here

I installed jenkins using docker and then added plugins. Here is the jenkins part of my docker-compose file

jenkins: image: jenkinsci/jenkins:latest #image: arcanneero/cd-jenkins-pipeline ports: - "8080:8080" - "50000:50000" volumes: - ./jenkins/data:/var/jenkins_home 
+6
source share
1 answer

Try creating credentials at the top level of Jenkins instead of the folder level, as you are doing now.

Although folder level credentials should also be used. Filed by JENKINS-36066 to track it.

0
source

All Articles