Jenkinsfile_keygen 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. pipeline {
  2. agent {
  3. label "swarm"
  4. }
  5. environment {
  6. DOCKER_REGISTRY='dev-registry.infoclinica.ru:5000'
  7. DOCKER_IMAGE='ovpn'
  8. SERVICE_NAME="keygen"
  9. PKI_GIT_URL='ssh://git@git.sdsys.ru:8022/iru/openvpn-pki.git'
  10. PKI_GIT_NAME='openvpn-pki'
  11. OVPN_GIT_URL='ssh://git@git.sdsys.ru:8022/iru/openvpn.git'
  12. OVPN_GIT_DIR='openvpn'
  13. JENKINS_MAIL='jenkins.dev@sdsys.ru'
  14. SMTP_SERVER='mail.sdsys.ru'
  15. }
  16. parameters {
  17. string(
  18. name: "client_mail",
  19. defaultValue: "tomishinets.v@sdsys.ru",
  20. description: "Email which has to be recieved certs and key"
  21. )
  22. string(
  23. name: "key_name",
  24. defaultValue: "test",
  25. description: "The names for generation keys and certs."
  26. )
  27. string(
  28. name: "mode",
  29. defaultValue: "client",
  30. description: "For who generate cert, key and conf-file (clients or admins)"
  31. )
  32. string(
  33. name: "mailto",
  34. defaultValue: "tomishinets.v@sdsys.ru",
  35. description: "Email which has to be notified."
  36. )
  37. }
  38. stages {
  39. stage("Check if already exist CNAME") {
  40. steps {
  41. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  42. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  43. git clone ${PKI_GIT_URL}'''
  44. }
  45. script {
  46. def zip = "${WORKSPACE}/${PKI_GIT_NAME}/open/easy-rsa/client_keys/sds-${key_name}.zip"
  47. if (fileExists(zip)) {
  48. currentBuild.result = 'ABORTED'
  49. return
  50. }
  51. }
  52. }
  53. }
  54. stage("Generate Keys and Certs") {
  55. steps {
  56. script {
  57. if (currentBuild.result == 'ABORTED') {
  58. return
  59. }
  60. echo "Running ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest."
  61. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  62. sh '''set +x
  63. docker pull ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest \
  64. && docker run -i --rm -e TZ=Europe/Moscow -e "mode=keygen" -e "SSHKEY=$(cat ${GIT_SSH_KEY})" \
  65. ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest /tmp/keygen.sh ${key_name}
  66. '''
  67. }
  68. }
  69. }
  70. }
  71. stage("Generate configs") {
  72. steps {
  73. script {
  74. if (currentBuild.result == 'ABORTED') {
  75. return
  76. }
  77. echo "Delete old repo version"
  78. sh 'rm -rf ${WORKSPACE}/${PKI_GIT_NAME} && rm -rf ${WORKSPACE}/${OVPN_GIT_DIR}'
  79. echo "Generate ccd config"
  80. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  81. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  82. git clone ${OVPN_GIT_URL}'''
  83. }
  84. if (mode == 'client') {
  85. file = "${WORKSPACE}/${OVPN_GIT_DIR}/ip_client.txt"
  86. }
  87. if (mode == 'admin') {
  88. file = "${WORKSPACE}/${OVPN_GIT_DIR}/ip_admin.txt"
  89. }
  90. string ip = readFile(file)
  91. split = ip.tokenize(".")
  92. if (split[3].toInteger() >= 254) {
  93. currentBuild.result == 'FAILURE'
  94. return
  95. } else {
  96. split[3] = (split[3].toInteger() + 1) + ""
  97. def newIp = split.join(".")
  98. string txt = split[3].toString()
  99. writeFile file: file, text: newIp
  100. def conf = "${WORKSPACE}/${OVPN_GIT_DIR}/${OVPN_GIT_DIR}/ccd/${key_name}"
  101. if (mode == 'client') {
  102. writeFile file: conf, text: "ifconfig-push " + newIp + " 255.255.255.0"
  103. }
  104. if (mode == 'admin') {
  105. writeFile file: conf, text: "ifconfig-push " + newIp + " 255.255.0.0"
  106. }
  107. }
  108. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  109. sh '''cd ${OVPN_GIT_DIR}
  110. echo "Add new config for ${key_name}" > ../commit.txt
  111. git add -A
  112. git config --global user.email "${JENKINS_MAIL}"
  113. git config --global user.name "Jenkins"
  114. git commit -F ../commit.txt
  115. GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  116. git push origin master
  117. '''
  118. }
  119. }
  120. }
  121. }
  122. stage("Send key, certs and config with email") {
  123. steps {
  124. script {
  125. if ( currentBuild.result == 'ABORTED' || currentBuild.result == 'FAILURE' ) {
  126. return
  127. }
  128. echo "Pull new OPENVPN-PKI repo version"
  129. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  130. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  131. git clone ${PKI_GIT_URL}
  132. '''
  133. }
  134. echo "Send certs,key and config-file to client"
  135. fileZip = "${WORKSPACE}/${PKI_GIT_NAME}/open/easy-rsa/client_keys/sds-${key_name}.zip"
  136. if ( !fileExists("${fileZip}")) {
  137. currentBuild.result == 'FAILURE'
  138. return
  139. } else {
  140. withEnv(["zip=${fileZip}"]) {
  141. withCredentials([usernamePassword(credentialsId: 'jenkins', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
  142. sh '''echo "Ваши ключ, сертификаты и конфигурационный файл для подключения к infoclinica.ru" | email -s "Your Certs and Key" \
  143. -f ${JENKINS_MAIL} \
  144. -r ${SMTP_SERVER} \
  145. -m login \
  146. -u ${USERNAME} \
  147. -i ${PASSWORD} \
  148. -a ${zip} \
  149. ${client_mail}
  150. '''
  151. }
  152. }
  153. }
  154. }
  155. }
  156. }
  157. }
  158. post {
  159. always {
  160. echo "CleaningUp work directory"
  161. deleteDir()
  162. }
  163. failure {
  164. mail charset: 'UTF-8',
  165. subject: "Jenkins build ERROR",
  166. mimeType: 'text/html',
  167. to: "${mailto}",
  168. body: "<b>ATTENTION!!!</b> <b><br> Jenkins job failed.\n\n <b><br>Project Name:</b> ${env.JOB_NAME} <b><br>\nBuild Number:</b> ${env.BUILD_NUMBER} <b><br>\nURL Build:</b> ${RUN_DISPLAY_URL}"
  169. }
  170. aborted {
  171. mail charset: 'UTF-8',
  172. subject: "Jenkins build ERROR",
  173. mimeType: 'text/html',
  174. to: "${client_mail}",
  175. body: "<b>ATTENTION!!!</b> <b><br> Jenkins job aborted.\n\n <b><br> The CNAME ${key_name} is already exists!\n\n <b><br>Project Name:</b> ${env.JOB_NAME} <b><br>\nBuild Number:</b> ${env.BUILD_NUMBER} <b><br>\nURL Build:</b> ${RUN_DISPLAY_URL}"
  176. }
  177. }
  178. }