Jenkinsfile 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. def ENAMES = [ 'prod', 'dev' ]
  2. def CLUSTERS = ['prod': 'iru-swarm1-open.infoclinica.lan', 'dev': 'dev-iru-swarm.infoclinica.lan']
  3. def REGISTRIES = ['prod': 'registry.infoclinica.ru:5000', 'dev': 'dev-registry.infoclinica.ru:5000']
  4. pipeline {
  5. agent {
  6. label "swarm"
  7. }
  8. environment {
  9. DOCKER_REGISTRY='dev-registry.infoclinica.ru:5000'
  10. DOCKER_IMAGE='ovpn-rsa'
  11. SERVICE_NAME='ovpn_server'
  12. SERVICE_IMAGE='container_run'
  13. SWARM_GIT_URL='ssh://git@git.sdsys.ru:8022/iru/stack-deploy.git'
  14. SWARM_GIT_NAME='stack-deploy'
  15. PKI_GIT_URL='ssh://git@git.sdsys.ru:8022/iru/openvpn-pki.git'
  16. PKI_GIT_NAME='openvpn-pki'
  17. OVPN_GIT_DIR='openvpn'
  18. JENKINS_MAIL='jenkins@sdsys.ru'
  19. CLUSTER_NAME='dev-iru-swarm.infoclinica.lan'
  20. DOCKER_CERT_PATH='/run/secrets/swarm'
  21. }
  22. parameters {
  23. string(
  24. name: "branch",
  25. defaultValue: "97009",
  26. description: "Which branch to use"
  27. )
  28. string(
  29. name: "mailto",
  30. defaultValue: "tomishinets.v@sdsys.ru",
  31. description: "Email which has to be notified."
  32. )
  33. }
  34. stages {
  35. stage ("Discover SERIAL") {
  36. steps {
  37. script {
  38. SERIAL = sh script: "echo -n `date +%y%m%d``printf %03d $BUILD_NUMBER`", returnStdout: true
  39. }
  40. }
  41. }
  42. stage("Pull PKI repo") {
  43. steps {
  44. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  45. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  46. git clone ${PKI_GIT_URL} && cd ${WORKSPACE}/${PKI_GIT_NAME} && git checkout ${branch} && cd ${WORKSPACE}
  47. GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  48. git clone ${SWARM_GIT_URL}
  49. '''
  50. }
  51. sh '''cp ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/ca.crt \
  52. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/server.crt \
  53. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/server.key \
  54. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/sds-test.crt \
  55. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/sds-test.key \
  56. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/ta.key \
  57. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/stonevpn.crl \
  58. ${WORKSPACE}/openvpn-pki/open/easy-rsa/keys/dh2048.pem \
  59. ${WORKSPACE}/openvpn/keys
  60. ls -al ${WORKSPACE}/openvpn/keys/
  61. '''
  62. }
  63. }
  64. /* stage("Build") {
  65. steps {
  66. echo "Building ${DOCKER_IMAGE}:${SERIAL}."
  67. sh """docker build --no-cache -t ${DOCKER_IMAGE}:${SERIAL} .
  68. if [ \$? != 0 ]; then echo 'The container was not built'; exit 1; fi
  69. """
  70. }
  71. }
  72. stage ("Push to registry") {
  73. steps {
  74. script {
  75. ENAMES.each { item ->
  76. echo "Pushing to: ${item}, CLUSTER ${CLUSTERS.get((item))}"
  77. sh """docker tag ${DOCKER_IMAGE}:${SERIAL} ${REGISTRIES.get((item))}/iru/${DOCKER_IMAGE}:${SERIAL}
  78. docker push ${REGISTRIES.get((item))}/iru/${DOCKER_IMAGE}:${SERIAL}
  79. """
  80. }
  81. }
  82. }
  83. }
  84. */ stage("Run in Prod-like") {
  85. steps {
  86. script {
  87. echo "Check Prod-like cluster status"
  88. sh "DOCKER_HOST=tcp://${CLUSTERS.get((ENAMES[1]))}:2376 DOCKER_TLS_VERIFY=1 docker node ls"
  89. sh "DOCKER_HOST=tcp://${CLUSTERS.get((ENAMES[1]))}:2376 DOCKER_TLS_VERIFY=1 docker node inspect self -f '{{.Status.Addr}}'"
  90. def DHOST = 'tcp://'+sh(script: "DOCKER_HOST=tcp://${CLUSTERS.get((ENAMES[1]))}:2376 DOCKER_TLS_VERIFY=1 docker node inspect self -f '{{.Status.Addr}}'", returnStdout: true).trim()+':2376'
  91. echo "DHOST"
  92. }
  93. }
  94. }
  95. /* stage("Prod-like") {
  96. steps {
  97. echo "Check Prod-like cluster status"
  98. sh '''ping -c 2 ${CLUSTER_NAME}
  99. if [ $? -eq 0 ]; then
  100. export DOCKER_CERT_PATH=/run/secrets/swarm
  101. export DOCKER_HOST=tcp://${CLUSTER_NAME}:2376 DOCKER_TLS_VERIFY=1
  102. docker node ls --format "{{.Hostname}} {{.TLSStatus}}" | while read host status
  103. do
  104. if [ $status != Ready ]; then echo "Cluster ${CLUSTER_NAME} state is inconsistent"; exit 1
  105. else echo "HOST: $host STATUS: $status"
  106. fi
  107. done
  108. else echo "Host not Found"; exit 1
  109. fi
  110. '''
  111. echo "Run containers in Prod-like"
  112. sh '''export DOCKER_CERT_PATH=/run/secrets/swarm
  113. export DOCKER_HOST=tcp://${CLUSTER_NAME}:2376 DOCKER_TLS_VERIFY=1
  114. export DOCKER_HOST=tcp://$(docker info -f '{{.Name}}'):2376 DOCKER_TLS_VERIFY=1
  115. if [ -z $(docker service ps -q ${DOCKER_IMAGE}) ];then
  116. docker service create --replicas 1 \
  117. --mount type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock \
  118. --name ${SERVICE_NAME} ${DOCKER_REGISTRY}/${SERVICE_IMAGE}:2 -p 1194:1194 \
  119. --privileged --security-opt seccomp=unconfined \
  120. --tmpfs /run --tmpfs /run/lock -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
  121. -e "mode=server" ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:${BUILD_NUMBER}
  122. else
  123. docker service update \
  124. --args "-p 1194:1194 --privileged --security-opt seccomp=unconfined \
  125. --tmpfs /run --tmpfs /run/lock -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
  126. -e "mode=server" ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:${BUILD_NUMBER}" \
  127. ${SERVICE_NAME}
  128. if [ $? != 0 ]; then docker service rollback ${SERVICE_NAME}; fi
  129. fi
  130. '''
  131. }
  132. }
  133. stage("Tagging") {
  134. steps {
  135. echo "Tagging ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:${BUILD_NUMBER} to ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:latest"
  136. sh '''docker tag ${DOCKER_REGISTRY}/${DOCKER_IMAGE}:${BUILD_NUMBER} \
  137. ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest
  138. docker push ${DOCKER_REGISTRY}/iru/${DOCKER_IMAGE}:latest
  139. '''
  140. echo "Updating tag info in ${SWARM_GIT_NAME} repository"
  141. withCredentials([sshUserPrivateKey(credentialsId: 'provision', keyFileVariable: 'GIT_SSH_KEY', passphraseVariable: '', usernameVariable: 'GIT_SSH_USERNAME')]) {
  142. sh '''GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  143. git clone ${SWARM_GIT_URL}
  144. cd ${SWARM_GIT_NAME}
  145. echo -n ${BUILD_NUMBER} > tags/${DOCKER_IMAGE}.version
  146. git add -A
  147. git config --global user.email "${JENKINS_MAIL}"
  148. git config --global user.name "Jenkins"
  149. git commit -m 'Version update'
  150. GIT_SSH_COMMAND='ssh -i ${GIT_SSH_KEY} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \
  151. git push origin master
  152. '''
  153. }
  154. }
  155. }
  156. */ }
  157. post {
  158. always {
  159. echo "CleaningUp work directory"
  160. deleteDir()
  161. }
  162. failure {
  163. mail charset: 'UTF-8',
  164. subject: "Jenkins build ERROR",
  165. mimeType: 'text/html',
  166. to: "${mailto}",
  167. 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}"
  168. }
  169. success {
  170. mail charset: 'UTF-8',
  171. subject: "Jenkins build SUSCCESS",
  172. mimeType: 'text/html',
  173. to: "${mailto}",
  174. 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}"
  175. }
  176. }
  177. }