Chapter 4: Creating and Managing Jenkins Pipelines


Understanding Jenkins Pipelines : Jenkins pipelines are a suite of plugins that support implementing and integrating continuous delivery pipelines into Jenkins. Pipelines automate the process of building, testing, and deploying software.
Types of Jenkins Pipelines
- Declarative Pipeline
A more structured and simple syntax.
Easier to read and write, ideal for most use cases.
Example:
pipeline {
agent any
environment {
BUILD_ENV = 'production'
}
stages {
stage('Checkout') {
steps {
git 'https://github.com/example/repo.git'
}
}
stage('Build') {
steps {
sh 'mvn clean install'
}
steps {
sh 'mvn test'
}
post {
always {
junit 'target/surefire-reports/*.xml'}
}
stage('Deploy') {
steps {
sh './deploy.sh'
}
}
}
}
- Scripted Pipeline
Uses Groovy-based syntax.
Offers greater flexibility but requires more expertise.
Suitable for complex or highly customized scenarios.
Example:
node {
stage('Checkout') {
checkout scm
}
stage('Build') {
try {
sh 'mvn package'
} catch (Exception e) {
error 'Build failed!'
}
}sh 'mvn test'
junit 'target/surefire-reports/*.xml'
}
stage(‘Deploy’) {
input message: 'Deploy to production?', ok: 'Deploy'
sh './deploy.sh'
}
}A Jenkinsfile is a text file that defines your pipeline and resides in the root of your source code repository.
Steps to Create a Jenkinsfile:
Create a file named
Jenkinsfile
in your repository.Define pipeline stages and steps.
Validate syntax using Jenkins UI or Jenkins Linter.
Commit the file to version control.
Key Sections of a Jenkinsfile:
Agent: Defines where the pipeline will run.
Environment: Sets global environment variables.
Stages: Defines the steps of the pipeline.
Post: Defines actions after stage completion.
Best Practices for Pipeline Creation and Maintenance
Use Declarative Pipelines for Simplicity: Prefer declarative pipelines unless there is a specific need for scripting.
Modularize Your Pipelines: Break pipelines into stages and steps for better readability.
Utilize Shared Libraries: Reuse common code across pipelines.
Implement Proper Error Handling: Use
try-catch
blocks andpost
actions.Secure Sensitive Information: Store sensitive data in Jenkins credentials.
Test Pipelines Locally: Use tools like Jenkinsfile Runner for pre-deployment testing.
Monitor and Optimize: Analyze build times and resource utilization.
Debugging and Troubleshooting Jenkins Pipelines
Syntax Errors: Validate using Jenkins Linter.
Timeout Issues: Implement timeouts for stages.
Credential Problems: Ensure Jenkins has access to correct credentials.
Build Failures: Review console logs for detailed output.
Subscribe to my newsletter
Read articles from shilpa tanga directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
