Login
Remember
Register
Ask a Question
What are the Scopes of Jenkins Credentials?
0
votes
asked
Nov 16, 2022
in
Jenkins
by
Robin
What are the Scopes of Jenkins Credentials?
jenkins-credentials
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 16, 2022
by
Robin
Jenkins credentials can be of one of the two scopes – Global & System
Global – the credential will be usable across all the jobs configured in the Jenkins instance (i.e. for all jobs). This is more suited for user Jobs (i.e. for the freestyle, pipeline, or other jobs) to authenticate itself with target services/infrastructures to accomplish the purpose of the job)
System – This is a special scope that will allow the Jenkins itself (i.e. the core Jenkins functionalities & some installed plugins) to authenticate itself to external services/infrastructures to perform some defined tasks. E.g. sending emails, etc.
...