L’étape suivante de mon pipeline jenkins déclaratif est la suivante: Je crée un script qui provient de mon dossier resources/
à l’aide de libraryResource. Ce script contient les informations d'identification de mon utilisateur autobuild
et de certains utilisateurs admintest
.
stage('Build1') {
steps {
node{
def script = libraryResource 'tests/test.sh'
writeFile file: 'script.sh', text: script
sh 'chmod +x script.sh'
withCredentials([usernamePassword(credentialsId: xxx, usernameVariable: 'AUTOBUILD_USER', passwordVariable: 'AUTOBUILD_PASSWD')]){
sh './script.sh "
}
}
}
Cela fonctionne bien. Je peux utiliser mon utilisateur autobuild
. Maintenant, je cherche le meilleur moyen d'inclure également les informations d'identification de mon utilisateur admintest
. Dois-je l'imbriquer avec une deuxième partie withCredentials
ou puis-je rajouter un tableau usernamePassword
'?
Bien sûr, vous pouvez utiliser un bloc withCredentials
pour affecter plusieurs informations d'identification à différentes variables.
withCredentials([
usernamePassword(credentialsId: credsId1, usernameVariable: 'USER1', passwordVariable: 'PASS1'),
usernamePassword(credentialsId: credsId2, usernameVariable: 'USER2', passwordVariable: 'PASS2')
]){
//...
}
De plus, vous pouvez l'utiliser avec $ class
withCredentials([[
$class: 'AmazonWebServicesCredentialsBinding',
credentialsId: 'awsID',
accessKeyVariable: 'AWS_ACCESS_KEY_ID',
secretKeyVariable: 'AWS_SECRET_ACCESS_KEY'],
[$class: 'UsernamePasswordMultiBinding',
credentialsId: 'myID',
usernameVariable: 'USR',
passwordVariable: 'PWD']])