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