Google News
logo
Java Jenkins - Interview Questions
Explain the terms Agent, post-section, Jenkinsfile
Agent : It is directive to tell Jenkins to execute the pipeline in a particular manner and order.
 
Post-section : If we have to add some notification and to perform other tasks at the end of a pipeline, post-section will definitely run at the end of every pipeline’s execution.
 
Jenkinsfile : The text file where all the definitions of pipelines are defined is called Jenkinsfile. It is being checked in the source control repository.
Advertisement