Morgan McMillian
13c26038e1
All checks were successful
dreamfall/mcmillian.dev/pipeline/head This commit looks good
14 lines
322 B
Groovy
14 lines
322 B
Groovy
pipeline {
|
|
agent { label "ansible" }
|
|
stages {
|
|
stage('Execute playbook') {
|
|
steps {
|
|
ansiblePlaybook(
|
|
playbook: 'main.yaml',
|
|
inventory: 'hosts.ini',
|
|
credentialsId: 'igor'
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|