1.

What is pipeline in Jenkins? Alos explain its types?

Answer»

A PIPELINE in Jenkins refers to a suite of plugins that help implement & integrate Continuous Delivery Pipelines throughout Jenkins. A continuous delivery pipeline is an AUTOMATED expression for getting software from version control right through to your USERS and consumers.

There are two types of pipeline syntax to define a JenkinsFile
  • Declarative Pipeline: This type of syntax offers an easy way for the creation of pipelines. It contains a predefined hierarchy and offers users the ability to control all aspects of a pipeline EXECUTION in a simple, straightforward manner.
  • Scripted Pipeline: This type of Jenkins pipeline RUNS on the Jenkins master using a lightweight executor. It uses few resources to translate the pipeline into atomic commands.


Discussion

No Comment Found