Jenkinsfile 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. def SERIAL
  2. def ENAMES = [ 'prod', 'dev' ]
  3. def CLUSTERS = ['prod': 'iru-swarm1-open.infoclinica.lan', 'dev': 'dev-iru-swarm.infoclinica.lan']
  4. def REGISTRIES = ['prod': 'registry.infoclinica.ru:5000', 'dev': 'dev-registry.infoclinica.ru:5000']
  5. pipeline {
  6. agent {
  7. label "swarm"
  8. }
  9. environment {
  10. DOCKER_REGISTRY='dev-registry.infoclinica.ru:5000'
  11. DOCKER_IMAGE='ovpn-rsa'
  12. SERVICE_NAME='ovpn-rsa_server'
  13. SERVICE_IMAGE='container_run'
  14. SWARM_GIT_URL='ssh://git@git.sdsys.ru:8022/iru/stack-deploy.git'
  15. SWARM_GIT_NAME='stack-deploy'
  16. PKI_GIT_URL='ssh://git@git.sdsys.ru:8022/iru/openvpn-pki.git'
  17. PKI_GIT_NAME='openvpn-pki'
  18. OVPN_GIT_DIR='openvpn'
  19. JENKINS_MAIL='jenkins@sdsys.ru'
  20. CLUSTER_NAME='dev-iru-swarm.infoclinica.lan'
  21. DOCKER_CERT_PATH='/run/secrets/swarm'
  22. }
  23. parameters {
  24. string(
  25. name: "branch",
  26. defaultValue: "97009",
  27. description: "Which branch to use"
  28. )
  29. string(
  30. name: "mailto",
  31. defaultValue: "tomishinets.v@sdsys.ru",
  32. description: "Email which has to be notified."
  33. )
  34. }
  35. stages {
  36. stage ("Discover SERIAL") {
  37. steps {
  38. script {
  39. SERIAL = sh script: "echo -n `date +%y%m%d``printf %03d $BUILD_NUMBER`", returnStdout: true
  40. }
  41. }
  42. }
  43. stage("Pull PKI repo") {
  44. steps {
  45. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  46. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  47. git clone ${PKI_GIT_URL} && cd ${WORKSPACE}/${PKI_GIT_NAME} && git checkout ${branch} && cd ${WORKSPACE}
  48. GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  49. git clone ${SWARM_GIT_URL}
  50. '''
  51. }
  52. sh '''cp ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/ca.crt \
  53. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/server.crt \
  54. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/server.key \
  55. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/sds-test.crt \
  56. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/sds-test.key \
  57. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/ta.key \
  58. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/stonevpn.crl \
  59. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/dh2048.pem \
  60. ${WORKSPACE}/openvpn/keys
  61. ls -al ${WORKSPACE}/openvpn/keys/
  62. '''
  63. }
  64. }
  65. stage("Build") {
  66. steps {
  67. echo "Building ${DOCKER_IMAGE}:${SERIAL}."
  68. sh """docker build --no-cache -t ${DOCKER_IMAGE}:${SERIAL} .
  69. if [ \$? != 0 ]; then echo 'The container was not built'; exit 1; fi
  70. """
  71. }
  72. }
  73. stage ("Push to registry") {
  74. steps {
  75. script {
  76. ENAMES.each { item ->
  77. echo "Pushing to: ${item}, CLUSTER ${CLUSTERS.get((item))}"
  78. sh """docker tag ${DOCKER_IMAGE}:${SERIAL} ${REGISTRIES.get((item))}/iru/${DOCKER_IMAGE}:${SERIAL}
  79. docker push ${REGISTRIES.get((item))}/iru/${DOCKER_IMAGE}:${SERIAL}
  80. """
  81. }
  82. }
  83. }
  84. }
  85. stage("Run in Prod-like") {
  86. steps {
  87. script {
  88. echo "Check Prod-like cluster status"
  89. sh "echo -n \${SERIAL} > \${SWARM_GIT_NAME}/tags/\${DOCKER_IMAGE}.version"
  90. sh """cd \${SWARM_GIT_NAME}/\${DOCKER_IMAGE}
  91. DOCKER_HOST=tcp://${CLUSTERS.get((ENAMES[1]))}:2376 DOCKER_TLS_VERIFY=1 ./ovpn-rsa-open-staging.sh
  92. """
  93. def NODE = sh (script: "DOCKER_HOST=tcp://${CLUSTERS.get((ENAMES[1]))}:2376 DOCKER_TLS_VERIFY=1 docker service ps \${SERVICE_NAME} --format '{{.Node}}' --filter desired-state=Running" , returnStdout: true).trim()
  94. echo "${NODE}"
  95. def CONTAINER_ID_CLIENT = sh script: "docker run --name ${DOCKER_IMAGE} -e mode=client -e server=${NODE} --privileged -d --rm ${DOCKER_IMAGE}:${SERIAL}" , returnStdout: true
  96. sh """docker exec -t \${CONTAINER_ID_CLIENT} ping -c 3 -q 10.10.20.1
  97. if [ \$? != 0 ]; then exit 1; else echo 'OVPN_RSA is working!!!'; fi
  98. """
  99. }
  100. }
  101. }
  102. stage ("Tagging") {
  103. steps {
  104. script {
  105. ENAMES.each { item ->
  106. echo "Setting latest tag for $item"
  107. sh """docker tag ${DOCKER_IMAGE}:${SERIAL} ${REGISTRIES.get((item))}/${DOCKER_IMAGE}:latest
  108. docker push ${REGISTRIES.get((item))}/${DOCKER_IMAGE}:latest
  109. """
  110. }
  111. }
  112. echo "Updating tag info in ${SWARM_GIT_NAME} repository"
  113. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  114. sh """cd ${SWARM_GIT_NAME}
  115. echo -n ${SERIAL} > tags/${DOCKER_IMAGE}.version
  116. git add -A
  117. git config --global user.email "${JENKINS_MAIL}"
  118. git config --global user.name "Jenkins"
  119. git commit -m 'Version update'
  120. GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  121. git push origin master
  122. """
  123. }
  124. }
  125. }
  126. }
  127. post {
  128. always {
  129. sh "docker stop ${DOCKER_IMAGE}"
  130. sh "DOCKER_HOST=tcp://${CLUSTERS.get((ENAMES[1]))}:2376 DOCKER_TLS_VERIFY=1 docker stack rm ${DOCKER_IMAGE}"
  131. echo "CleaningUp work directory"
  132. deleteDir()
  133. }
  134. failure {
  135. mail charset: 'UTF-8',
  136. subject: "Jenkins build ERROR",
  137. mimeType: 'text/html',
  138. to: "${mailto}",
  139. 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}"
  140. }
  141. success {
  142. mail charset: 'UTF-8',
  143. subject: "Jenkins build SUSCCESS",
  144. mimeType: 'text/html',
  145. to: "${mailto}",
  146. body: "<b>Congradulations!!!</b> <b><br> Jenkins job succefully finished.\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}"
  147. }
  148. }
  149. }