how can i add the git credentials in to jenkins declarative pipeline

2.5k Views Asked by At

hi team how can pass my github credentials in my jenkins declarative pipeline please helpme out how can i add my git hub credentials user name and password and url in my jenkins pipeline, if i add the user name and password if i add the password in to my pipeline some one how can i push my files in to my git using jenkins declarative pipeline .

i know how to use the jenkins syntax generator , but i want to know how to pass a credentials using jenkins declarative pipeline. please help any one

pipeline{ agent any stages{ stage('git-log'){ // withCredentials([usernamePassword(credentialsId: 'ramesh-git', usernameVariable: 'raja12', passwordVariable: 'Rakae12')]) steps{ withCredentials([usernamePassword(credentialsId: 'ramesh-git', usernameVariable: 'raja12', passwordVariable: 'Rakae12')]) sh 'git clone https://github.com/trdy43/test-play.git'

    }
        
    }
}

}

3

There are 3 best solutions below

0
On

You need to store your credentials on Jenkins Credentials Store.

Then you will be able to access your credentials with

pipeline {
    agent any 

    environment {
        MY_CREDENTIALS = credentials('my-credentials-on-jenkins')
    }

This will create and populate two environment variables: one for username MY_CREDENTIALS_USR, other for password MY_CREDENTIALS_PSW.

You can then access the environment variables by calling their names:

    stages {

        stage('Calling MY_CREDENTIALS') {
            steps {
                echo "username is $MY_CREDENTIALS_USR
                echo "password is $MY_CREDENTIALS_PSW
0
On

You need to store your Git credentials on Jenkins Global Credentials Store. I'm using this method.

stage('Checkout External Project'){
  steps{
  git branch: 'master',
  credentialsId: 'credid',
  url: '[email protected]:muz******/react-app-jenkins.git'
}

}

1
On

'githubuserpwd' being the credentials variable name that we given in Jenkins:

pipeline {

    agent any
    environment{
      github = credentials('githubuserpwd')
     }

    stages {

      stage('login to github'){
         steps{
           sh "docker login -u $github_USR -p $github_psw"
           }
       }
    }
}