Skip to content

Instantly share code, notes, and snippets.

View dievops's full-sized avatar
🏠
Working from home

Diego Muñoz dievops

🏠
Working from home
View GitHub Profile
@dievops
dievops / Jenkinsfile
Created March 3, 2022 15:40
Jenkinsfile scripted inside declarative with foor loop and parallel agent on kubernetes
pipeline {
agent none
options {timeout(time: 300, unit: 'Minutes')}
environment {
IMAGE = "docker:latest"
PARALLEL_TEST = "40" // change here how many parallel jobs
}