Compare commits
4 Commits
60.0.0
...
remove-ori
Author | SHA1 | Date | |
---|---|---|---|
98d73da47b | |||
51d32734ba | |||
350fc3cc0a | |||
6333981376 |
@ -42,11 +42,9 @@ dockerizedBuildPipeline(
|
|||||||
buildAndTest: {
|
buildAndTest: {
|
||||||
sonatypeZionGitConfig()
|
sonatypeZionGitConfig()
|
||||||
runSafely "git checkout ${gitBranch(env)}"
|
runSafely "git checkout ${gitBranch(env)}"
|
||||||
runSafely "./upgrade.sh ./nexus-repository-manager ${chartVersion} ${params.appVersion}"
|
|
||||||
runSafely "./upgrade.sh ./nxrm-aws-resiliency ${chartVersion} ${params.appVersion}"
|
runSafely "./upgrade.sh ./nxrm-aws-resiliency ${chartVersion} ${params.appVersion}"
|
||||||
runSafely './build.sh'
|
runSafely './build.sh'
|
||||||
runSafely 'git add nxrm-aws-resiliency'
|
runSafely 'git add nxrm-aws-resiliency'
|
||||||
runSafely 'git add nexus-repository-manager'
|
|
||||||
},
|
},
|
||||||
skipVulnerabilityScan: true,
|
skipVulnerabilityScan: true,
|
||||||
archiveArtifacts: 'docs/*',
|
archiveArtifacts: 'docs/*',
|
||||||
|
3
build.sh
3
build.sh
@ -18,12 +18,9 @@ set -e
|
|||||||
|
|
||||||
# lint yaml of charts
|
# lint yaml of charts
|
||||||
helm lint ./nxrm-aws-resiliency
|
helm lint ./nxrm-aws-resiliency
|
||||||
helm lint ./nexus-repository-manager
|
|
||||||
|
|
||||||
# unit test
|
# unit test
|
||||||
(cd ./nxrm-aws-resiliency; helm unittest -3 -t junit -o test-output.xml .)
|
(cd ./nxrm-aws-resiliency; helm unittest -3 -t junit -o test-output.xml .)
|
||||||
(cd ./nexus-repository-manager; helm unittest -3 -t junit -o test-output.xml .)
|
|
||||||
|
|
||||||
# package the charts into tgz archives
|
# package the charts into tgz archives
|
||||||
helm package ./nxrm-aws-resiliency --destination docs
|
helm package ./nxrm-aws-resiliency --destination docs
|
||||||
helm package ./nexus-repository-manager --destination docs
|
|
||||||
|
BIN
docs/nexus-repository-manager-61.0.0.tgz
Normal file
BIN
docs/nexus-repository-manager-61.0.0.tgz
Normal file
Binary file not shown.
BIN
docs/nexus-repository-manager-61.0.2.tgz
Normal file
BIN
docs/nexus-repository-manager-61.0.2.tgz
Normal file
Binary file not shown.
BIN
docs/nexus-repository-manager-62.0.0.tgz
Normal file
BIN
docs/nexus-repository-manager-62.0.0.tgz
Normal file
Binary file not shown.
BIN
docs/nxrm-aws-resiliency-61.0.0.tgz
Normal file
BIN
docs/nxrm-aws-resiliency-61.0.0.tgz
Normal file
Binary file not shown.
BIN
docs/nxrm-aws-resiliency-61.0.2.tgz
Normal file
BIN
docs/nxrm-aws-resiliency-61.0.2.tgz
Normal file
Binary file not shown.
BIN
docs/nxrm-aws-resiliency-62.0.0.tgz
Normal file
BIN
docs/nxrm-aws-resiliency-62.0.0.tgz
Normal file
Binary file not shown.
@ -3,10 +3,10 @@ name: nexus-repository-manager
|
|||||||
|
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
version: 60.0.0
|
version: 62.0.0
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application.
|
# incremented each time you make changes to the application.
|
||||||
appVersion: 3.60.0
|
appVersion: 3.62.0
|
||||||
|
|
||||||
description: Sonatype Nexus Repository Manager - Universal Binary repository
|
description: Sonatype Nexus Repository Manager - Universal Binary repository
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ deploymentStrategy: Recreate
|
|||||||
image:
|
image:
|
||||||
# Sonatype Official Public Image
|
# Sonatype Official Public Image
|
||||||
repository: sonatype/nexus3
|
repository: sonatype/nexus3
|
||||||
tag: 3.60.0
|
tag: 3.62.0
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
# for image registries that require login, specify the name of the existing
|
# for image registries that require login, specify the name of the existing
|
||||||
|
@ -15,13 +15,13 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 60.0.0
|
version: 62.0.0
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
appVersion: 3.60.0
|
appVersion: 3.62.0
|
||||||
|
|
||||||
keywords:
|
keywords:
|
||||||
- artifacts
|
- artifacts
|
||||||
|
Reference in New Issue
Block a user