what is the difference between a freestyle project and a scripted pipeline in Jenkins, when we are working on CI/CD pipeline on what bases do we need to pick a freestyle project and Scripted Pipeline?
3 respuestas0 comentarios
Me gusta
3 comentarios
Ya no es posible comentar esta entrada. Contacta al propietario del sitio para obtener más información.
in the Freestyle job everything is executed in the agent, but for the Scripted Pipeline Job, the pipeline code is translated in the master to atomic commands that are sent to the agents.
In Freestyle jobs, pipelines enable you to define the whole application lifecycle. Pipeline functionality helps Jenkins to support continuous delivery (CD).
in the Freestyle job everything is executed in the agent, but for the Scripted Pipeline Job, the pipeline code is translated in the master to atomic commands that are sent to the agents.
In Freestyle jobs, pipelines enable you to define the whole application lifecycle. Pipeline functionality helps Jenkins to support continuous delivery (CD).
freestyle used for simple job, where as pipeline used for continue delivery.