| /** |
| * Generate cookiecutter cluster by individual products |
| * |
| * Expected parameters: |
| * COOKIECUTTER_TEMPLATE_CREDENTIALS Credentials to the Cookiecutter template repo. |
| * COOKIECUTTER_TEMPLATE_URL Cookiecutter template repo address. |
| * COOKIECUTTER_TEMPLATE_BRANCH Branch for the template. |
| * COOKIECUTTER_TEMPLATE_CONTEXT Context parameters for the template generation. |
| * EMAIL_ADDRESS Email to send a created tar file |
| * RECLASS_MODEL_URL Reclass model repo address |
| * RECLASS_MODEL_CREDENTIALS Credentials to the Reclass model repo. |
| * RECLASS_MODEL_BRANCH Branch for the template to push to model. |
| * COMMIT_CHANGES Commit model to repo |
| * |
| **/ |
| |
| common = new com.mirantis.mk.Common() |
| git = new com.mirantis.mk.Git() |
| python = new com.mirantis.mk.Python() |
| |
| timestamps { |
| node() { |
| def templateEnv = "${env.WORKSPACE}/template" |
| def modelEnv = "${env.WORKSPACE}/model" |
| |
| try { |
| def templateContext = readYaml text: COOKIECUTTER_TEMPLATE_CONTEXT |
| def clusterDomain = templateContext.default_context.cluster_domain |
| def clusterName = templateContext.default_context.cluster_name |
| def cutterEnv = "${env.WORKSPACE}/cutter" |
| def jinjaEnv = "${env.WORKSPACE}/jinja" |
| def outputDestination = "${modelEnv}/classes/cluster/${clusterName}" |
| def targetBranch = "feature/${clusterName}" |
| def templateBaseDir = "${env.WORKSPACE}/template" |
| def templateDir = "${templateEnv}/template/dir" |
| def templateOutputDir = templateBaseDir |
| |
| currentBuild.description = clusterName |
| print("Using context:\n" + COOKIECUTTER_TEMPLATE_CONTEXT) |
| |
| stage ('Download Cookiecutter template') { |
| git.checkoutGitRepository(templateEnv, COOKIECUTTER_TEMPLATE_URL, COOKIECUTTER_TEMPLATE_BRANCH, COOKIECUTTER_TEMPLATE_CREDENTIALS) |
| } |
| |
| stage ('Download full Reclass model') { |
| if (RECLASS_MODEL_URL != '') { |
| git.checkoutGitRepository(modelEnv, RECLASS_MODEL_URL, RECLASS_MODEL_BRANCH, RECLASS_MODEL_CREDENTIALS) |
| } |
| } |
| |
| stage('Generate base infrastructure') { |
| templateDir = "${templateEnv}/cluster_product/infra" |
| templateOutputDir = "${env.WORKSPACE}/template/output/infra" |
| sh "mkdir -p ${templateOutputDir}" |
| sh "mkdir -p ${outputDestination}" |
| python.setupCookiecutterVirtualenv(cutterEnv) |
| python.buildCookiecutterTemplate(templateDir, COOKIECUTTER_TEMPLATE_CONTEXT, templateOutputDir, cutterEnv, templateBaseDir) |
| sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}" |
| } |
| |
| stage('Generate product CI/CD') { |
| if (templateContext.default_context.cicd_enabled.toBoolean()) { |
| templateDir = "${templateEnv}/cluster_product/cicd" |
| templateOutputDir = "${env.WORKSPACE}/template/output/cicd" |
| sh "mkdir -p ${templateOutputDir}" |
| python.setupCookiecutterVirtualenv(cutterEnv) |
| python.buildCookiecutterTemplate(templateDir, COOKIECUTTER_TEMPLATE_CONTEXT, templateOutputDir, cutterEnv, templateBaseDir) |
| sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}" |
| } |
| } |
| |
| stage('Generate product OpenContrail') { |
| if (templateContext.default_context.opencontrail_enabled.toBoolean()) { |
| templateDir = "${templateEnv}/cluster_product/opencontrail" |
| templateOutputDir = "${env.WORKSPACE}/template/output/opencontrail" |
| sh "mkdir -p ${templateOutputDir}" |
| python.setupCookiecutterVirtualenv(cutterEnv) |
| python.buildCookiecutterTemplate(templateDir, COOKIECUTTER_TEMPLATE_CONTEXT, templateOutputDir, cutterEnv, templateBaseDir) |
| sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}" |
| } |
| } |
| |
| stage('Generate product Kubernetes') { |
| if (templateContext.default_context.kubernetes_enabled.toBoolean()) { |
| templateDir = "${templateEnv}/cluster_product/kubernetes" |
| templateOutputDir = "${env.WORKSPACE}/template/output/kubernetes" |
| sh "mkdir -p ${templateOutputDir}" |
| python.setupCookiecutterVirtualenv(cutterEnv) |
| python.buildCookiecutterTemplate(templateDir, COOKIECUTTER_TEMPLATE_CONTEXT, templateOutputDir, cutterEnv, templateBaseDir) |
| sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}" |
| } |
| } |
| |
| stage('Generate product OpenStack') { |
| if (templateContext.default_context.openstack_enabled.toBoolean()) { |
| templateDir = "${templateEnv}/cluster_product/openstack" |
| templateOutputDir = "${env.WORKSPACE}/template/output/openstack" |
| sh "mkdir -p ${templateOutputDir}" |
| python.setupCookiecutterVirtualenv(cutterEnv) |
| python.buildCookiecutterTemplate(templateDir, COOKIECUTTER_TEMPLATE_CONTEXT, templateOutputDir, cutterEnv, templateBaseDir) |
| sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}" |
| } |
| } |
| |
| stage('Generate product StackLight') { |
| if (templateContext.default_context.stacklight_enabled.toBoolean()) { |
| templateDir = "${templateEnv}/cluster_product/stacklight" |
| templateOutputDir = "${env.WORKSPACE}/template/output/stacklight" |
| sh "mkdir -p ${templateOutputDir}" |
| python.setupCookiecutterVirtualenv(cutterEnv) |
| python.buildCookiecutterTemplate(templateDir, COOKIECUTTER_TEMPLATE_CONTEXT, templateOutputDir, cutterEnv, templateBaseDir) |
| sh "mv -v ${templateOutputDir}/${clusterName}/* ${outputDestination}" |
| } |
| } |
| |
| stage('Generate new SaltMaster node') { |
| def nodeFile = "${modelEnv}/nodes/cfg01.${clusterDomain}.yml" |
| def nodeString = """classes: |
| - cluster.${clusterName}.infra.config |
| parameters: |
| _param: |
| linux_system_codename: xenial |
| reclass_data_revision: master |
| linux: |
| system: |
| name: cfg01 |
| domain: ${clusterDomain} |
| """ |
| sh "mkdir -p ${modelEnv}/nodes/" |
| writeFile(file: nodeFile, text: nodeString) |
| } |
| |
| stage ('Save changes to Reclass model') { |
| if (env.getEnvironment().containsKey('COMMIT_CHANGES') && COMMIT_CHANGES.toBoolean() && RECLASS_MODEL_URL != null && RECLASS_MODEL_URL != "") { |
| git.changeGitBranch(modelEnv, targetBranch) |
| git.commitGitChanges(modelEnv, "Added new cluster ${clusterName}") |
| git.pushGitChanges(modelEnv, targetBranch, 'origin', RECLASS_MODEL_CREDENTIALS) |
| } |
| |
| sh(returnStatus: true, script: "tar -zcvf ${clusterName}.tar.gz -C ${modelEnv} .") |
| archiveArtifacts artifacts: "${clusterName}.tar.gz" |
| if (EMAIl_ADDRESS != null && EMAIL_ADDRESS != ""){ |
| emailext(to: EMAIL_ADDRESS, |
| attachmentsPattern: "${clusterName}.tar.gz", |
| body: "Mirantis Jenkins\n\nRequested reclass model ${clusterName} has been created and attached to this email.\nEnjoy!\n\nMirantis", |
| subject: "Your Salt model ${clusterName}") |
| } |
| } |
| |
| } catch (Throwable e) { |
| // If there was an error or exception thrown, the build failed |
| currentBuild.result = "FAILURE" |
| throw e |
| } finally { |
| stage ('Clean workspace directories') { |
| sh(returnStatus: true, script: "rm -rfv ${templateEnv}") |
| sh(returnStatus: true, script: "rm -rfv ${modelEnv}") |
| } |
| // common.sendNotification(currentBuild.result,"",["slack"]) |
| } |
| } |
| } |