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

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,554,456
Community Members
 
Community Events
184
Community Groups

Bamboo specs - BitbucketServerRepository::sshPrivateKey does not work

Edited

I have problem with Bamboo Specs for Bamboo 6.3.1.

I want to set own Private/Public key for BitbucketServerRepository like

 project_key = _project_key;
repository_slug = _repository_slug;
branch_name = branch;
ApplicationLink link = new ApplicationLink()
.name(Main.BITBUCKET_NAME);
this.sshPrivateKey(load_private_ssh_key());
this.sshPublicKey(load_public_ssh_key());
this.server(link);
this.sshCloneUrl("ssh://<server>" + project_key + "/" + repository_slug + ".git");
this.repositorySlug(repository_slug);
this.projectKey(project_key);
this.name(Main.BITBUCKET_BAMBOO_NAME + project_key + repository_slug + branch);
this.branch(branch);
this.submodulesEnabled(true);
this.commandTimeoutInMinutes(120);
this.remoteAgentCacheEnabled(false);
this.fetchWholeRepository(true);

(Replace <server> with valid server address)

Everything publish without problems, but Bamboo generate NEW keys in my Bitbucket server even if I have specified private/public pair.

What's wrong?

 

Thans for any advise :),

John

1 answer

1 accepted

0 votes
Answer accepted
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jul 30, 2018 • edited

Hi @koudis,

If you want to make use of your own SSH key, then you should be looking at https://docs.atlassian.com/bamboo-specs-docs/6.3.1/specs-java.html#git, creating a "new GitRepository()", however, since you are setting up a Bitbucket Server repository in Bamboo, you should let Bamboo manage the SSH keys on your behalf. This is the same behavior as when creating a Bitbucket Server repository from Bamboo's UI.

Could you please attempt on running the following instead (doing the replaces), letting us know how it goes.

Plan plan = new Plan(project, planName, planKey)
    .planRepositories(new BitbucketServerRepository()
        .name("my-bitbucket-repository")
        .server(bitbucketServerApplink)
        .projectKey("BBSPROJECT")
        .repositorySlug("my-repository-slug")
        .branch("master")
        .sshPrivateKey(sshPrivateKey)
        .sshPublicKey(sshPublicKey));

Extracted from Bitbucket Server Git repository - Authentication

Furthermore, it is recommended making use of Bitbucket Server as Repository Host over Git due to Benefits of integration

Kind regards,

Rafael

It does not work. 

If I publish Plan by SPECS and set explicit Private/public keys in repository configurations   it generetes own set of private/public keys and ignored my pp pair.

 

 

@rsperafico It does not work. 

If I publish Plan by SPECS and set explicit Private/public keys in repository configuration   it generetes own set of private/public keys and ignored my pp pair.

rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jul 30, 2018

Hi @koudis,

Thank you for your update.

A bug has been filed in our issue tracker (https://jira.atlassian.com/browse/BAM-20012 - Cannot set up custom SSH keys in Bamboo Java Specs) describing the issue you have reported.

Whilst the issue is not addressed, please continue on using Bitbucket Server as Repository Host instead of Git due to Benefits of integration and let Bamboo manage the SSH keys for you.

Kind regards,

Rafael

@rsperafico We upgraded to Bamboo 6.6.1 - same problem.

rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jul 31, 2018

Hi @koudis,

Thank you for your update.

There was no need to upgrade Bamboo 6.6.1 as the bug raised (https://jira.atlassian.com/browse/BAM-20012 - Cannot set up custom SSH keys in Bamboo Java Specs) already mention the feature is not working as described in documentation, but thank you for the effort.

If you visit the link mentioned, you should find Fix Version/s: in it, in which describes in which version the bug will have its fix.

Kind regards,

Rafael

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events