Hi there,
I'm trying to set up a build plan where the first step is to run npm install. One of the npm dependencies is a Bitbucket repository that is accessed via ssh. I've added the correct ssh private key as a shared credential in Bamboo cloud and added the public key to a Bitbucket account with access to the repo. When running the build plan it fails when trying to clone the repository.
error 29-Oct-2015 15:53:14 npm ERR! Host key verification failed. error 29-Oct-2015 15:53:14 npm ERR! fatal: Could not read from remote repository. error 29-Oct-2015 15:53:14 npm ERR! error 29-Oct-2015 15:53:14 npm ERR! Please make sure you have the correct access rights error 29-Oct-2015 15:53:14 npm ERR! and the repository exists.
Is there anything else that needs to be done for the ssh authentication to work?
This is a pretty old question regarding Bamboo Cloud but for anyone who's interested in the same subject for Bamboo Server, I've got a few points and suggestions to share regarding Git Credentials and NPM via Bamboo.
When you invoke NPM through Bamboo, NPM and Git will be run as the same user that runs the Bamboo (or Bamboo remote agent) process and will use the SSH key from the environment (e.g. ~/.ssh/id_rsa) for that user. Basically, authentication is purely handled at the environment level, the same as it would by command-line (not by Bamboo).
The same credentials you use to checkout the repository that contains your NPM project via Bamboo, will not be available within the build or to NPM to checkout dependencies.
Our general recommendation (using Bitbucket Server as an example) is to:
They are killing Bamboo Cloud, so in a way this will resolve itself... We'll be playing with Bitbucket Pipeline to see if it will work for us. Otherwise we'll go the stand-alone Bamboo server route, which I really wanted to avoid.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am having the same issue. Is there any way to resolve this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.