mcmillian.us/Jenkinsfile

15 lines
339 B
Plaintext
Raw Normal View History

2022-12-14 23:31:02 +00:00
pipeline {
agent { label "ansible" }
stages {
stage('Execute playbook') {
steps {
ansiblePlaybook(
playbook: 'main.yaml',
inventory: 'inventory.yaml',
credentialsId: 'onedrop-vetinari'
)
}
}
}
}