Tomishinets Vladimir 5 years ago
parent
commit
1ef28c6d34
1 changed files with 10 additions and 1 deletions
  1. 10 1
      OFFICERenewalWildcardJenkinsfile

+ 10 - 1
OFFICERenewalWildcardJenkinsfile

@@ -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
+           """
+      }
 }