Morgan McMillian
b775bc6ada
All checks were successful
dreamfall/mcmillian.dev/pipeline/head This commit looks good
14 lines
339 B
Groovy
14 lines
339 B
Groovy
pipeline {
|
|
agent { label "ansible" }
|
|
stages {
|
|
stage('Execute playbook') {
|
|
steps {
|
|
ansiblePlaybook(
|
|
playbook: 'main.yaml',
|
|
inventory: 'inventory.yaml',
|
|
credentialsId: 'onedrop-vetinari'
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|