|
@@ -89,7 +89,8 @@ pipeline {
|
|
|
echo "Update certificate and key for ${item}"
|
|
|
def PLAYBOOK = PKI_GIT_NAME + '/' + DOMAIN + '/wildcard/acme-dns/' + 'apache.yml'
|
|
|
def TARGET_HOST = item + '.' + DOMAIN
|
|
|
- update_sertificate(PLAYBOOK, CONFIG_DIR, TARGET_HOST)
|
|
|
+// update_sertificate(PLAYBOOK, CONFIG_DIR, TARGET_HOST)
|
|
|
+ ap(PLAYBOOK, CONFIG_DIR, TARGET_HOST)
|
|
|
}
|
|
|
}
|
|
|
/* ENDDATE = sh (script: "echo|openssl s_client -servername ${SMTP_SERVER} -connect ${SMTP_SERVER} 2>/dev/null|openssl x509 -noout -enddate", returnStdout: true).trim()
|
|
@@ -157,4 +158,12 @@ def update_sertificate(String PLAYBOOK, String TARGET_DIR, String TARGET_HOST) {
|
|
|
colorized: true)
|
|
|
}
|
|
|
}
|
|
|
+}
|
|
|
+def ap(String PLAYBOOK, String TARGET_DIR, String TARGET_HOST) {
|
|
|
+ withCredentials([sshUserPrivateKey(credentialsId: 'ansible', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
|
|
|
+ sh """ansible-playbook ${PLAYBOOK} --private-key \
|
|
|
+ ${GIT_SSH_KEY} -u ansible -e target_dir=${TARGET_DIR} \
|
|
|
+ -e TARGET_HOST=${TARGET_HOST} --ssh-common-args='-o StrictHostKeyChecking=no' -vvv
|
|
|
+ """
|
|
|
+ }
|
|
|
}
|