nxrm3-helm-repository/Jenkinsfile-Release

146 lines
4.6 KiB
Plaintext

/*
* Copyright (c) 2020-present Sonatype, Inc. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
@Library(['private-pipeline-library', 'jenkins-shared', 'int-jenkins-shared']) _
final jira = [
versionPrefix: '', project: 'INT', projectId: '12410',
credentialId : 'jenkins-jira', autoRelease: true, failOnError: true
]
final jiraVersionMappings = [
'nexus-repository-manager-single-instance': 'helm-nxrm',
'nexus-repository-manager-aws-resilient-single-instance': 'helm-nxrm-aws-resiliency'
]
final chartLocation = [
'nexus-repository-manager-single-instance': 'single-inst-oss-pro-kubernetes',
'nexus-repository-manager-aws-resilient-single-instance': 'aws-single-instance-resiliency'
]
properties([
parameters([
choice(
choices: ['', 'nexus-repository-manager-single-instance', 'nexus-repository-manager-aws-resilient-single-instance'],
name: 'chart',
description: 'Chart to deploy.',
),
string(
name: 'appVersion',
description: 'Version of the application image, like "1.139.0"',
),
string(
name: 'chartVersion',
description: '(Optional) Version of the Chart, like "139.0.0". If omitted, it will be calculated from the appVersion.',
),
])
])
final chartVersion = calculateChartVersion(params.chartVersion, params.appVersion)
dockerizedBuildPipeline(
prepare: {
if (! params.chart) {
error('Chart parameter is required.')
}
if (! params.appVersion) {
error('The appVersion is required.')
}
githubStatusUpdate('pending')
},
buildAndTest: {
sonatypeZionGitConfig()
runSafely "git checkout ${gitBranch(env)}"
runSafely "./upgrade.sh ./${chartLocation[params.chart]} ${chartVersion} ${params.appVersion}"
runSafely './build.sh'
runSafely 'git add aws-single-instance-resiliency single-inst-oss-pro-kubernetes'
},
skipVulnerabilityScan: true,
archiveArtifacts: 'docs/*',
testResults: [],
deployCondition: { true },
deploy: {
runSafely 'git add docs'
runSafely "git commit -m 'Release Update for ${params.chart} ${chartVersion}'"
sshagent(credentials: [sonatypeZionCredentialsId()]) {
runSafely 'git push'
}
},
postDeploy: {
// Verify Index.yaml
String version = verifyIndexYamlAndTarFile(params.chart)
// Set Jira Fix Version
jira.versionPrefix = jiraVersionMappings[chart]
jiraSetFixVersion(jira, version)
// Create tags
String tagName = "${chart}-${version}"
runSafely "git tag -a ${tagName} -m 'Release Update: ${version}'"
sshagent(credentials: [sonatypeZionCredentialsId()]) {
runSafely "git push origin ${tagName}"
}
},
onSuccess: {
buildNotifications(currentBuild, env, 'main')
},
onFailure: {
buildNotifications(currentBuild, env, 'main')
}
)
String verifyIndexYamlAndTarFile(String chart) {
// Get current version
def indexFile = readYaml file: 'docs/index.yaml'
String version = indexFile.entries[chart][0].version
// Check tar file
String repo_url = 'https://sonatype.github.io/helm3-charts/'
verifyDownloadLinks(
urlParts: [repo_url, chart, '-', version],
urlSuffixes: ['.tgz'], retryCount: 2, retryDelay: 60
)
// Get repository version
def response = httpRequest "${repo_url}/index.yaml"
def repositoryIndexFile = readYaml text:response.content
String repositoryVersion = repositoryIndexFile.entries[chart][0].version
if (!version.equals(repositoryVersion)) {
error "Released version: ${version} is different " +
"from helm repository version: ${repositoryVersion}"
}
return repositoryVersion
}
String calculateChartVersion(final String chartVersion, final String appVersion) {
if (chartVersion) {
return chartVersion
}
if (! appVersion) {
error 'Failed to calculate chartVersion with no appVersion.'
}
final versionParts = parseVersionString(appVersion)
final chartMajor = versionParts[1]
final chartMinor = versionParts[2]
if (! chartMajor || ! chartMinor) {
error "Failed to calculate chartVersion from appVersion: ${appVersion}"
}
return [chartMajor, chartMinor, '0'].join('.')
}