Jenkinsfile_keygen 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. error ("Certs already exist!!!")
  50. return
  51. }
  52. }
  53. }
  54. }
  55. stage("Generate Keys and Certs") {
  56. steps {
  57. script {
  58. echo "Running ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest."
  59. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  60. sh '''set +x
  61. docker pull ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest \
  62. && docker run -i --rm -e TZ=Europe/Moscow -e "mode=keygen" -e "SSHKEY=$(cat ${GIT_SSH_KEY})" \
  63. ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest /tmp/keygen.sh ${key_name}
  64. '''
  65. }
  66. }
  67. }
  68. }
  69. stage("Generate configs") {
  70. steps {
  71. script {
  72. echo "Delete old repo version"
  73. sh 'rm -rf ${WORKSPACE}/${PKI_GIT_NAME} && rm -rf ${WORKSPACE}/${OVPN_GIT_DIR}'
  74. echo "Generate ccd config"
  75. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  76. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  77. git clone ${OVPN_GIT_URL}'''
  78. }
  79. if (mode == 'client') {
  80. file = "${WORKSPACE}/${OVPN_GIT_DIR}/ip_client.txt"
  81. }
  82. if (mode == 'admin') {
  83. file = "${WORKSPACE}/${OVPN_GIT_DIR}/ip_admin.txt"
  84. }
  85. string ip = readFile(file)
  86. split = ip.tokenize(".")
  87. if (split[3].toInteger() >= 254) {
  88. currentBuild.result == 'FAILURE'
  89. return
  90. } else {
  91. split[3] = (split[3].toInteger() + 1) + ""
  92. def newIp = split.join(".")
  93. string txt = split[3].toString()
  94. writeFile file: file, text: newIp
  95. def conf = "${WORKSPACE}/${OVPN_GIT_DIR}/${OVPN_GIT_DIR}/ccd/${key_name}"
  96. if (mode == 'client') {
  97. writeFile file: conf, text: "ifconfig-push " + newIp + " 255.255.255.0"
  98. }
  99. if (mode == 'admin') {
  100. writeFile file: conf, text: "ifconfig-push " + newIp + " 255.255.0.0"
  101. }
  102. }
  103. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  104. sh '''cd ${OVPN_GIT_DIR}
  105. echo "Add new config for ${key_name}" > ../commit.txt
  106. git add -A
  107. git config --global user.email "${JENKINS_MAIL}"
  108. git config --global user.name "Jenkins"
  109. git commit -F ../commit.txt
  110. GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  111. git push origin master
  112. '''
  113. }
  114. }
  115. }
  116. }
  117. stage("Send key, certs and config with email") {
  118. steps {
  119. script {
  120. if ( currentBuild.result == 'ABORTED' || currentBuild.result == 'FAILURE' ) {
  121. return
  122. }
  123. echo "Pull new OPENVPN-PKI repo version"
  124. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  125. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  126. git clone ${PKI_GIT_URL}
  127. '''
  128. }
  129. echo "Send certs,key and config-file to client"
  130. fileZip = "${WORKSPACE}/${PKI_GIT_NAME}/open/easy-rsa/client_keys/sds-${key_name}.zip"
  131. if ( !fileExists("${fileZip}")) {
  132. currentBuild.result == 'FAILURE'
  133. return
  134. } else {
  135. withEnv(["zip=${fileZip}"]) {
  136. withCredentials([usernamePassword(credentialsId: 'jenkins', usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
  137. sh '''echo "Ваши ключ, сертификаты и конфигурационный файл для подключения к infoclinica.ru" | email -s "Your Certs and Key" \
  138. -f ${JENKINS_MAIL} \
  139. -r ${SMTP_SERVER} \
  140. -m login \
  141. -u ${USERNAME} \
  142. -i ${PASSWORD} \
  143. -a ${zip} \
  144. ${client_mail}
  145. '''
  146. }
  147. }
  148. }
  149. }
  150. }
  151. }
  152. }
  153. post {
  154. always {
  155. echo "CleaningUp work directory"
  156. deleteDir()
  157. }
  158. failure {
  159. mail charset: 'UTF-8',
  160. subject: "Jenkins build ERROR",
  161. mimeType: 'text/html',
  162. to: "${mailto}",
  163. 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}"
  164. }
  165. aborted {
  166. mail charset: 'UTF-8',
  167. subject: "Jenkins build ERROR",
  168. mimeType: 'text/html',
  169. to: "${client_mail}",
  170. 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}"
  171. }
  172. }
  173. }