blob: 0986c4e90cf483e342f3264cce6f4f9329ccd0a1 [file] [log] [blame]
Tomáš Kukrál7ded3642017-03-27 15:52:51 +02001/**
2 * Generate cookiecutter cluster by individual products
3 *
4 * Expected parameters:
5 * COOKIECUTTER_TEMPLATE_CREDENTIALS Credentials to the Cookiecutter template repo.
6 * COOKIECUTTER_TEMPLATE_URL Cookiecutter template repo address.
7 * COOKIECUTTER_TEMPLATE_BRANCH Branch for the template.
8 * COOKIECUTTER_TEMPLATE_CONTEXT Context parameters for the template generation.
9 * COOKIECUTTER_INSTALL_CICD Whether to install CI/CD stack.
10 * COOKIECUTTER_INSTALL_CONTRAIL Whether to install OpenContrail SDN.
11 * COOKIECUTTER_INSTALL_KUBERNETES Whether to install Kubernetes.
12 * COOKIECUTTER_INSTALL_OPENSTACK Whether to install OpenStack cloud.
13 * COOKIECUTTER_INSTALL_STACKLIGHT Whether to install StackLight monitoring.
14 * RECLASS_MODEL_URL Reclass model repo address
15 * RECLASS_MODEL_CREDENTIALS Credentials to the Reclass model repo.
16 * RECLASS_MODEL_BRANCH Branch for the template to push to model.
Tomáš Kukrál65f8f752017-03-30 17:51:46 +020017 * COMMIT_CHANGES Commit model to repo
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020018 *
19**/
20
21common = new com.mirantis.mk.Common()
22git = new com.mirantis.mk.Git()
23python = new com.mirantis.mk.Python()
24
25timestamps {
26 node() {
Tomáš Kukrál9f6260f2017-03-29 23:58:26 +020027 def templateEnv = "${env.WORKSPACE}/template"
28 def modelEnv = "${env.WORKSPACE}/model"
29
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020030 try {
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020031 def templateContext = python.loadJson(COOKIECUTTER_TEMPLATE_CONTEXT)
32 def templateDir = "${templateEnv}/template/dir"
33 def templateOutputDir = "${env.WORKSPACE}/template"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020034 def cutterEnv = "${env.WORKSPACE}/cutter"
35 def jinjaEnv = "${env.WORKSPACE}/jinja"
36 def clusterName = templateContext.cluster_name
37 def clusterDomain = templateContext.cluster_domain
38 def targetBranch = "feature/${clusterName}"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020039 def outputDestination = "${modelEnv}/classes/cluster/${clusterName}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020040
41 stage ('Download Cookiecutter template') {
42 git.checkoutGitRepository(templateEnv, COOKIECUTTER_TEMPLATE_URL, COOKIECUTTER_TEMPLATE_BRANCH, COOKIECUTTER_TEMPLATE_CREDENTIALS)
43 }
44
45 stage ('Download full Reclass model') {
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +020046 if (RECLASS_MODEL_URL != '') {
47 git.checkoutGitRepository(modelEnv, RECLASS_MODEL_URL, RECLASS_MODEL_BRANCH, RECLASS_MODEL_CREDENTIALS)
48 }
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020049 }
50
51 stage('Generate base infrastructure') {
52 templateDir = "${templateEnv}/cluster_product/infra"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020053 templateOutputDir = "${env.WORKSPACE}/template/output/infra"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020054 sh "mkdir -p ${templateOutputDir}"
Tomáš Kukrálbdc51812017-03-31 09:55:07 +020055 sh "mkdir -p ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020056 python.setupCookiecutterVirtualenv(cutterEnv)
57 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020058 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020059 }
60
61 stage('Generate product CI/CD') {
62 if (COOKIECUTTER_INSTALL_CICD.toBoolean()) {
63 templateDir = "${templateEnv}/cluster_product/cicd"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020064 templateOutputDir = "${env.WORKSPACE}/template/output/cicd"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020065 sh "mkdir -p ${templateOutputDir}"
66 python.setupCookiecutterVirtualenv(cutterEnv)
67 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020068 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020069 }
70 }
71
72 stage('Generate product OpenContrail') {
73 if (COOKIECUTTER_INSTALL_CONTRAIL.toBoolean()) {
Tomáš Kukrále8042572017-03-30 22:28:06 +020074 templateDir = "${templateEnv}/cluster_product/opencontrail"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020075 templateOutputDir = "${env.WORKSPACE}/template/output/opencontrail"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020076 sh "mkdir -p ${templateOutputDir}"
77 python.setupCookiecutterVirtualenv(cutterEnv)
78 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020079 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020080 }
81 }
82
83 stage('Generate product Kubernetes') {
84 if (COOKIECUTTER_INSTALL_KUBERNETES.toBoolean()) {
85 templateDir = "${templateEnv}/cluster_product/kubernetes"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020086 templateOutputDir = "${env.WORKSPACE}/template/output/kubernetes"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020087 sh "mkdir -p ${templateOutputDir}"
88 python.setupCookiecutterVirtualenv(cutterEnv)
89 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020090 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020091 }
92 }
93
94 stage('Generate product OpenStack') {
95 if (COOKIECUTTER_INSTALL_OPENSTACK.toBoolean()) {
96 templateDir = "${templateEnv}/cluster_product/openstack"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020097 templateOutputDir = "${env.WORKSPACE}/template/output/openstack"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020098 sh "mkdir -p ${templateOutputDir}"
99 python.setupCookiecutterVirtualenv(cutterEnv)
100 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200101 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200102 }
103 }
104
105 stage('Generate product StackLight') {
106 if (COOKIECUTTER_INSTALL_STACKLIGHT.toBoolean()) {
107 templateDir = "${templateEnv}/cluster_product/stacklight"
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200108 templateOutputDir = "${env.WORKSPACE}/template/output/stacklight"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200109 sh "mkdir -p ${templateOutputDir}"
110 python.setupCookiecutterVirtualenv(cutterEnv)
111 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200112 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200113 }
114 }
115
116 stage('Generate new SaltMaster node') {
117 def nodeFile = "${modelEnv}/nodes/cfg01.${clusterDomain}.yml"
118 def nodeString = """classes:
119- cluster.${clusterName}.infra.config
120parameters:
121 _param:
122 linux_system_codename: xenial
123 reclass_data_revision: master
124 linux:
125 system:
126 name: cfg01
127 domain: ${clusterDomain}
128"""
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +0200129 sh "mkdir -p ${modelEnv}/nodes/"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200130 writeFile(file: nodeFile, text: nodeString)
131 }
132
Tomáš Kukrál6c5957e2017-03-30 18:04:38 +0200133 stage('Inject changes to Reclass model') {
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200134 def outputSource = "${env.WORKSPACE}/template/output/"
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +0200135 sh "mkdir -p ${outputDestination}"
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200136 sh(returnStdout: true, script: "cp -vr ${outputSource} ${outputDestination}")
Tomáš Kukrál6c5957e2017-03-30 18:04:38 +0200137 }
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200138
Tomáš Kukrál6c5957e2017-03-30 18:04:38 +0200139 stage ('Save changes to Reclass model') {
140 if (COMMIT_CHANGES.toBoolean()) {
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +0200141 git.changeGitBranch(modelEnv, targetBranch)
Tomáš Kukrál6c5957e2017-03-30 18:04:38 +0200142 git.commitGitChanges(modelEnv, "Added new cluster ${clusterName}")
Tomáš Kukrál65f8f752017-03-30 17:51:46 +0200143 git.pushGitChanges(modelEnv, targetBranch, 'origin', RECLASS_MODEL_CREDENTIALS)
144 }
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200145 sh(returnStatus: true, script: "tar -zcvf ${clusterName}.tar.gz -C ${modelEnv} .")
Tomáš Kukrál4c98b582017-03-30 18:49:06 +0200146 archiveArtifacts artifacts: "${clusterName}.tar.gz"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200147 }
148
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200149 } catch (Throwable e) {
150 // If there was an error or exception thrown, the build failed
151 currentBuild.result = "FAILURE"
152 throw e
153 } finally {
Tomáš Kukrál8b91db92017-03-29 08:30:49 +0200154 stage ('Clean workspace directories') {
Tomáš Kukrál2b983c32017-03-30 18:09:02 +0200155 sh(returnStatus: true, script: "rm -rfv ${templateEnv}")
156 sh(returnStatus: true, script: "rm -rfv ${modelEnv}")
Tomáš Kukrál8b91db92017-03-29 08:30:49 +0200157 }
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200158 // common.sendNotification(currentBuild.result,"",["slack"])
159 }
160 }
161}