@@ -148,11 +148,13 @@ def update_sertificate(String PLAYBOOK, String TARGET_DIR, String TARGET_HOST) {
ansiblePlaybook(
credentialsId: 'ansible',
playbook: PLAYBOOK,
- hostKeyChecking: 'false',
extraVars: [
target_dir: TARGET_DIR,
TARGET_HOST: TARGET_HOST
],
+ extras: [
+ ansible_ssh_extra_args='-o StrictHostKeyChecking=no'
+ ],
colorized: true)
}