RCBian
RCBian

Reputation: 1080

Working with jenkins credentials

I want to know how to Create the credentials that can be used by Jenkins and by jobs running in Jenkins to connect to 3rd party services.

Upvotes: 14

Views: 47836

Answers (3)

Devesh
Devesh

Reputation: 866

Credentials plugin - provides a centralized way to define credentials that can be used by your Jenkins instance, plugins and build jobs.

Credentials Binding plugin - allows you to configure your build jobs to inject credentials as environment variables.

The third party plugins need to be installed in your Jenkins instance. For example, Assembla Auth Plugin allows you to authenticate to an Assembla repository.

Which 3rd party services are you working with?

Upvotes: 7

mahinlma
mahinlma

Reputation: 1248

Instead of using SSH Username with private key you can simply use username with password option

Upvotes: 0

Phat H. VU
Phat H. VU

Reputation: 2360

You should specify which 3rd party service you will work on. Below is an example of credentials with bitbucket

I am now working with Jenkins ver. 1.568. By default, there's Credentials feature. So, if you want to add a credential, just click on Add Credentials. For example, I'd like to add SSH Username with password, so I can use it in checking out code from bitbucket

enter image description here enter image description here

Upvotes: 9

Related Questions