forked from sonatype/helm3-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile-Release
146 lines (127 loc) · 4.42 KB
/
Jenkinsfile-Release
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
* 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-iq-server': 'helm-iq',
'nexus-repository-manager': 'helm-nxrm',
]
final chartLocation = [
'nexus-iq-server': 'nexus-iq',
'nexus-repository-manager': 'nexus-repository-manager',
]
properties([
parameters([
choice(
choices: ['', 'nexus-iq-server', 'nexus-repository-manager'],
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 charts/${chartLocation[params.chart]} ${chartVersion} ${params.appVersion}"
runSafely './build.sh'
runSafely 'git add charts'
},
skipVulnerabilityScan: true,
archiveArtifacts: 'docs/*',
testResults: [],
deployCondition: { true },
retentionPolicy: RetentionPolicy.TEN_BUILDS,
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('.')
}