blob: faaf7041e45b8b24309bdbdb5ccd751ec44d8a1f [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
Tomáš Kukrál08bfb952017-04-12 13:10:52 +020041 currentBuild.description = clusterName
42
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020043 stage ('Download Cookiecutter template') {
44 git.checkoutGitRepository(templateEnv, COOKIECUTTER_TEMPLATE_URL, COOKIECUTTER_TEMPLATE_BRANCH, COOKIECUTTER_TEMPLATE_CREDENTIALS)
45 }
46
47 stage ('Download full Reclass model') {
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +020048 if (RECLASS_MODEL_URL != '') {
49 git.checkoutGitRepository(modelEnv, RECLASS_MODEL_URL, RECLASS_MODEL_BRANCH, RECLASS_MODEL_CREDENTIALS)
50 }
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020051 }
52
53 stage('Generate base infrastructure') {
54 templateDir = "${templateEnv}/cluster_product/infra"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020055 templateOutputDir = "${env.WORKSPACE}/template/output/infra"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020056 sh "mkdir -p ${templateOutputDir}"
Tomáš Kukrálbdc51812017-03-31 09:55:07 +020057 sh "mkdir -p ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020058 python.setupCookiecutterVirtualenv(cutterEnv)
59 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020060 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020061 }
62
63 stage('Generate product CI/CD') {
64 if (COOKIECUTTER_INSTALL_CICD.toBoolean()) {
65 templateDir = "${templateEnv}/cluster_product/cicd"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020066 templateOutputDir = "${env.WORKSPACE}/template/output/cicd"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020067 sh "mkdir -p ${templateOutputDir}"
68 python.setupCookiecutterVirtualenv(cutterEnv)
69 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020070 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020071 }
72 }
73
74 stage('Generate product OpenContrail') {
75 if (COOKIECUTTER_INSTALL_CONTRAIL.toBoolean()) {
Tomáš Kukrále8042572017-03-30 22:28:06 +020076 templateDir = "${templateEnv}/cluster_product/opencontrail"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020077 templateOutputDir = "${env.WORKSPACE}/template/output/opencontrail"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020078 sh "mkdir -p ${templateOutputDir}"
79 python.setupCookiecutterVirtualenv(cutterEnv)
80 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020081 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020082 }
83 }
84
85 stage('Generate product Kubernetes') {
86 if (COOKIECUTTER_INSTALL_KUBERNETES.toBoolean()) {
87 templateDir = "${templateEnv}/cluster_product/kubernetes"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020088 templateOutputDir = "${env.WORKSPACE}/template/output/kubernetes"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020089 sh "mkdir -p ${templateOutputDir}"
90 python.setupCookiecutterVirtualenv(cutterEnv)
91 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +020092 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020093 }
94 }
95
96 stage('Generate product OpenStack') {
97 if (COOKIECUTTER_INSTALL_OPENSTACK.toBoolean()) {
98 templateDir = "${templateEnv}/cluster_product/openstack"
Tomáš Kukrál931f9972017-03-30 23:44:57 +020099 templateOutputDir = "${env.WORKSPACE}/template/output/openstack"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200100 sh "mkdir -p ${templateOutputDir}"
101 python.setupCookiecutterVirtualenv(cutterEnv)
102 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200103 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200104 }
105 }
106
107 stage('Generate product StackLight') {
108 if (COOKIECUTTER_INSTALL_STACKLIGHT.toBoolean()) {
109 templateDir = "${templateEnv}/cluster_product/stacklight"
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200110 templateOutputDir = "${env.WORKSPACE}/template/output/stacklight"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200111 sh "mkdir -p ${templateOutputDir}"
112 python.setupCookiecutterVirtualenv(cutterEnv)
113 python.buildCookiecutterTemplate(templateDir, templateContext, templateOutputDir, cutterEnv)
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200114 sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200115 }
116 }
117
118 stage('Generate new SaltMaster node') {
119 def nodeFile = "${modelEnv}/nodes/cfg01.${clusterDomain}.yml"
120 def nodeString = """classes:
121- cluster.${clusterName}.infra.config
122parameters:
123 _param:
124 linux_system_codename: xenial
125 reclass_data_revision: master
126 linux:
127 system:
128 name: cfg01
129 domain: ${clusterDomain}
130"""
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +0200131 sh "mkdir -p ${modelEnv}/nodes/"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200132 writeFile(file: nodeFile, text: nodeString)
133 }
134
Tomáš Kukrál6c5957e2017-03-30 18:04:38 +0200135 stage ('Save changes to Reclass model') {
136 if (COMMIT_CHANGES.toBoolean()) {
Tomáš Kukrál4aac3aa2017-04-04 14:04:02 +0200137 git.changeGitBranch(modelEnv, targetBranch)
Tomáš Kukrál6c5957e2017-03-30 18:04:38 +0200138 git.commitGitChanges(modelEnv, "Added new cluster ${clusterName}")
Tomáš Kukrál65f8f752017-03-30 17:51:46 +0200139 git.pushGitChanges(modelEnv, targetBranch, 'origin', RECLASS_MODEL_CREDENTIALS)
140 }
Tomáš Kukrál931f9972017-03-30 23:44:57 +0200141 sh(returnStatus: true, script: "tar -zcvf ${clusterName}.tar.gz -C ${modelEnv} .")
Tomáš Kukrál4c98b582017-03-30 18:49:06 +0200142 archiveArtifacts artifacts: "${clusterName}.tar.gz"
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200143 }
144
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200145 } catch (Throwable e) {
146 // If there was an error or exception thrown, the build failed
147 currentBuild.result = "FAILURE"
148 throw e
149 } finally {
Tomáš Kukrál8b91db92017-03-29 08:30:49 +0200150 stage ('Clean workspace directories') {
Tomáš Kukrál2b983c32017-03-30 18:09:02 +0200151 sh(returnStatus: true, script: "rm -rfv ${templateEnv}")
152 sh(returnStatus: true, script: "rm -rfv ${modelEnv}")
Tomáš Kukrál8b91db92017-03-29 08:30:49 +0200153 }
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200154 // common.sendNotification(currentBuild.result,"",["slack"])
155 }
156 }
157}