pipeline { agent none environment { CHAT = "morgan@mcmillian.dev" MAIL = "morgan@mcmillian.dev" ANSIBLE_HOST_KEY_CHECKING = "False" } stages { stage('Execute playbook') { agent { label 'ansible' } steps { ansiblePlaybook(playbook: "main.yaml", inventory: "hosts.ini", credentialsId: "igor") } post { success { jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Deploy Succeeded', notifySuspects: true, targets: "${CHAT}" } failure { jabberNotify buildToChatNotifier: [$class: 'ExtraMessageOnlyBuildToChatNotifier'], extraMessage: 'Deploy Failed', notifySuspects: true, targets: "${CHAT}" mail to: "${MAIL}", subject: "Deploy Failed: ${currentBuild.fullDisplayName}", body: "Something is wrong with ${env.BUILD_URL}" } } } } }