5.2 Jenkins Pipeline terms
PipeLine - The pipeline is a set of instructions for continuous delivery that is delivered in the form of code and includes instructions for the complete construction process. You can use the pipeline to create, test, and deliver an application.
Node - Jenkins runs on a node, which is a computer. A node block is mostly utilized in the syntax of automated pipelines.
Stage - In a pipeline, a stage block contains a set of steps. That is, the build, test, and deploy procedures are all integrated into a single step. The Jenkins pipeline process is typically visualized using a stage block.
Step - A step is a single activity that performs a certain procedure at a predetermined time. There are several steps in a pipeline.