diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1640343 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.vs/** +.idea/** + +**/test-output.xml + +.DS_Store diff --git a/Dockerfile b/Dockerfile index 19bdabc..f382301 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,20 @@ # -# Copyright (c) 2019-present Sonatype, Inc. All rights reserved. -# Includes the third-party code listed at http://links.sonatype.com/products/clm/attributions. -# "Sonatype" is a trademark of Sonatype, Inc. +# Sonatype Nexus (TM) Open Source Version +# Copyright (c) 2008-present Sonatype, Inc. +# All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. +# +# This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, +# which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. +# +# Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks +# of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the +# Eclipse Foundation. All other trademarks are the property of their respective owners. # -# FROM docker-all.repo.sonatype.com/alpine:latest -# LABEL maintainer="operations-group@sontype.com" +FROM docker-all.repo.sonatype.com/alpine/helm:3.9.3 -# RUN apk update +RUN apk update && apk upgrade && \ + apk add --no-cache bash git openssh -# WORKDIR /app -# COPY ./src ./ +RUN mkdir /.local /.cache && chmod 777 /.local /.cache -# EXPOSE 8080 - -# CMD ["./runit"] diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..c72b3f4 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,31 @@ +/* + * Sonatype Nexus (TM) Open Source Version + * Copyright (c) 2008-present Sonatype, Inc. + * All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. + * + * This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, + * which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. + * + * Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks + * of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the + * Eclipse Foundation. All other trademarks are the property of their respective owners. + */ +@Library(['private-pipeline-library', 'jenkins-shared', 'nxrm-jenkins-shared']) _ + +dockerizedBuildPipeline( + prepare: { + githubStatusUpdate('pending') + }, + buildAndTest: { + sh './build.sh' + }, + skipVulnerabilityScan: true, + archiveArtifacts: 'docs/*', + testResults: ['**/test-output.xml'], + onSuccess: { + nxrmBuildNotifications(currentBuild, env) + }, + onFailure: { + nxrmBuildNotifications(currentBuild, env) + } +) diff --git a/Jenkinsfile-Release b/Jenkinsfile-Release new file mode 100644 index 0000000..a29062d --- /dev/null +++ b/Jenkinsfile-Release @@ -0,0 +1,106 @@ +/* + * 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', 'nxrm-jenkins-shared']) _ + +final jira = [ + versionPrefix: '', project: 'NEXUS', projectId: '12410', + credentialId : 'jenkins-jira', autoRelease: true, failOnError: true +] + +final jiraVersionMappings = [ + 'nexus-repository-manager': 'helm-nxrm', + 'nxrm-aws-resiliency': 'helm-nxrm-aws-resiliency' +] + +final chartLocation = [ + 'nexus-repository-manager': 'nexus-repository-manager', + 'nxrm-aws-resiliency': 'nxrm-aws-resiliency' +] + +properties([ + parameters([ + string( + name: 'appVersion', + description: 'Version of the application image, like "3.41.0"', + ), + string( + name: 'chartVersion', + description: '(Optional) Version of the Chart, like "41.0.0". If omitted, it will be calculated from the appVersion.', + ), + ]) +]) + +final chartVersion = calculateChartVersion(params.chartVersion, params.appVersion) + +dockerizedBuildPipeline( + prepare: { + if (! params.appVersion) { + error('The appVersion is required.') + } + githubStatusUpdate('pending') + }, + buildAndTest: { + sonatypeZionGitConfig() + runSafely "git checkout ${gitBranch(env)}" + runSafely "./upgrade.sh ./nexus-repository-manager ${chartVersion} ${params.appVersion}" + runSafely "./upgrade.sh ./nxrm-aws-resiliency ${chartVersion} ${params.appVersion}" + runSafely './build.sh' + runSafely 'git add nxrm-aws-resiliency nexus-repository-manager' + }, + skipVulnerabilityScan: true, + archiveArtifacts: 'docs/*', + testResults: [], + deployCondition: { true }, + deploy: { + runSafely 'git add docs' + runSafely "git commit -m 'Release Update for ${chartVersion}'" + + sshagent(credentials: [sonatypeZionCredentialsId()]) { + runSafely 'git push' + } + }, + postDeploy: { + // Create tags + String tagName = "${chartVersion}" + runSafely "git tag -a ${tagName} -m 'Release Update: ${chartVersion}'" + sshagent(credentials: [sonatypeZionCredentialsId()]) { + runSafely "git push origin ${tagName}" + } + }, + onSuccess: { + nxrmBuildNotifications(currentBuild, env) + }, + onFailure: { + nxrmBuildNotifications(currentBuild, env) + } +) + +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('.') +} diff --git a/OPSDOC.md b/OPSDOC.md deleted file mode 100644 index 6bf4534..0000000 --- a/OPSDOC.md +++ /dev/null @@ -1,65 +0,0 @@ - - -## Overview -Overview of the service: what is it, why do we have it, who are the primary -contacts, how to report bugs, links to design docs and other relevant -information. - -### Public Facing Endpoints -The URLs (or IPs) and ports used by the service and what they are used for -(ALB? SSH? FTP?) and notes about any certificates and their location. - -## Monitoring - -Monitoring dashboards / logging / introspection & obseverbility info. - -### Runbooks - -A list of every alert your monitoring system may generate for this service and -a step-by-step "what do to when..." for each of them. - -### SLO -Service Level Objectives in a succinct format: a target value or range of -values for a service level that is measured by an SLI. A natural structure for -SLOs is thus SLI ≤ target, or lower bound ≤ SLI ≤ upper bound. For example, we -might decide that we will return Shakespeare search results "quickly," adopting -an SLO that our average search request latency should be less than 100 -milliseconds. - -For more detailed information, please check out the Service Level Objectives -doc. If you're still unsure of what your SLOs should be, please reach out to -the SREs at #ops-sre-chat. - -Optionally but recommended, have a section of monitoring and dashboards for SLO -tracking (see the auth-service OpsDoc for examples of dashboards). - -## Build - -How to build the software that makes the service. Where to download it from, -where the source code repository is, steps for building and making a package or -other distribution mechanisms. If it is software that you modify in any way -(open source project you contribute to or a local project) include instructions -for how a new developer gets started. Ideally the end result is a package that -can be copied to other machines for installation. - -## Deploy - -How to deploy the service. How to build something from scratch: RAM/disk -requirements, OS version and configuration, what packages to install, and so -on. If this is automated with a configuration management tool like ansible/etc, -then say so. - -## Common Tasks - -Step-by-step instructions for common things like provisioning -(add/change/delete), common problems and their solutions, and so on. - -## DR -Where are backups of data stored? What are disaster / data recovery -procedures? - - diff --git a/README.md b/README.md index 3030aee..c8a0e83 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,18 @@ + + ## Helm Charts for Sonatype Nexus Repository Manager 3 We provide Helm charts for two different deployment scenarios: diff --git a/SECURITY.md b/SECURITY.md index 829cd68..b4832cf 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,11 +1,17 @@ - # Reporting Security Vulnerabilities ## When to report diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..2c64c30 --- /dev/null +++ b/build.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# +# Sonatype Nexus (TM) Open Source Version +# Copyright (c) 2008-present Sonatype, Inc. +# All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. +# +# This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, +# which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. +# +# Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks +# of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the +# Eclipse Foundation. All other trademarks are the property of their respective owners. +# + +helm plugin install https://github.com/quintush/helm-unittest + +set -e + +# lint yaml of charts +helm lint ./nxrm-aws-resiliency +helm lint ./nexus-repository-manager + +# unit test +(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 +helm package ./nxrm-aws-resiliency --destination docs +helm package ./nexus-repository-manager --destination docs diff --git a/docs/nexus-repository-manager-41.1.0.tgz b/docs/nexus-repository-manager-41.1.0.tgz new file mode 100644 index 0000000..7dd23d9 Binary files /dev/null and b/docs/nexus-repository-manager-41.1.0.tgz differ diff --git a/docs/nxrm-aws-resiliency-41.1.0.tgz b/docs/nxrm-aws-resiliency-41.1.0.tgz new file mode 100644 index 0000000..6a17885 Binary files /dev/null and b/docs/nxrm-aws-resiliency-41.1.0.tgz differ diff --git a/header.txt b/header.txt index 133b0e1..6ddf595 100644 --- a/header.txt +++ b/header.txt @@ -1,3 +1,10 @@ -Copyright (c) 2019-present Sonatype, Inc. All rights reserved. -Includes the third-party code listed at http://links.sonatype.com/products/clm/attributions. -"Sonatype" is a trademark of Sonatype, Inc. +Sonatype Nexus (TM) Open Source Version +Copyright (c) 2008-present Sonatype, Inc. +All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. + +This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, +which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. + +Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks +of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the +Eclipse Foundation. All other trademarks are the property of their respective owners. diff --git a/single-inst-oss-pro-kubernetes/.DS_Store b/nexus-repository-manager/.DS_Store similarity index 100% rename from single-inst-oss-pro-kubernetes/.DS_Store rename to nexus-repository-manager/.DS_Store diff --git a/single-inst-oss-pro-kubernetes/Chart.yaml b/nexus-repository-manager/Chart.yaml similarity index 97% rename from single-inst-oss-pro-kubernetes/Chart.yaml rename to nexus-repository-manager/Chart.yaml index fa0da1c..5bf2978 100644 --- a/single-inst-oss-pro-kubernetes/Chart.yaml +++ b/nexus-repository-manager/Chart.yaml @@ -3,10 +3,10 @@ name: nexus-repository-manager # 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. -version: 38.1.0 +version: 41.1.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 3.38.1 +appVersion: 3.41.1 description: Sonatype Nexus Repository Manager - Universal Binary repository diff --git a/single-inst-oss-pro-kubernetes/LICENSE b/nexus-repository-manager/LICENSE similarity index 100% rename from single-inst-oss-pro-kubernetes/LICENSE rename to nexus-repository-manager/LICENSE diff --git a/single-inst-oss-pro-kubernetes/README.md b/nexus-repository-manager/README.md similarity index 96% rename from single-inst-oss-pro-kubernetes/README.md rename to nexus-repository-manager/README.md index 69fb21c..72843b5 100644 --- a/single-inst-oss-pro-kubernetes/README.md +++ b/nexus-repository-manager/README.md @@ -1,3 +1,18 @@ + + # Nexus Repository [Nexus Repository OSS](https://www.sonatype.com/nexus-repository-oss) provides universal support for all major build tools. diff --git a/single-inst-oss-pro-kubernetes/templates/NOTES.txt b/nexus-repository-manager/templates/NOTES.txt similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/NOTES.txt rename to nexus-repository-manager/templates/NOTES.txt diff --git a/single-inst-oss-pro-kubernetes/templates/_helpers.tpl b/nexus-repository-manager/templates/_helpers.tpl similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/_helpers.tpl rename to nexus-repository-manager/templates/_helpers.tpl diff --git a/single-inst-oss-pro-kubernetes/templates/configmap-properties.yaml b/nexus-repository-manager/templates/configmap-properties.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/configmap-properties.yaml rename to nexus-repository-manager/templates/configmap-properties.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/configmap.yaml b/nexus-repository-manager/templates/configmap.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/configmap.yaml rename to nexus-repository-manager/templates/configmap.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/deployment.yaml b/nexus-repository-manager/templates/deployment.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/deployment.yaml rename to nexus-repository-manager/templates/deployment.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/ingress.yaml b/nexus-repository-manager/templates/ingress.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/ingress.yaml rename to nexus-repository-manager/templates/ingress.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/proxy-route.yaml b/nexus-repository-manager/templates/proxy-route.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/proxy-route.yaml rename to nexus-repository-manager/templates/proxy-route.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/pv.yaml b/nexus-repository-manager/templates/pv.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/pv.yaml rename to nexus-repository-manager/templates/pv.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/pvc.yaml b/nexus-repository-manager/templates/pvc.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/pvc.yaml rename to nexus-repository-manager/templates/pvc.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/route.yaml b/nexus-repository-manager/templates/route.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/route.yaml rename to nexus-repository-manager/templates/route.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/secret.yaml b/nexus-repository-manager/templates/secret.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/secret.yaml rename to nexus-repository-manager/templates/secret.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/service.yaml b/nexus-repository-manager/templates/service.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/service.yaml rename to nexus-repository-manager/templates/service.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/serviceaccount.yaml b/nexus-repository-manager/templates/serviceaccount.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/serviceaccount.yaml rename to nexus-repository-manager/templates/serviceaccount.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/test/test-check-logs.yaml b/nexus-repository-manager/templates/test/test-check-logs.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/test/test-check-logs.yaml rename to nexus-repository-manager/templates/test/test-check-logs.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/test/test-connection.yaml b/nexus-repository-manager/templates/test/test-connection.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/templates/test/test-connection.yaml rename to nexus-repository-manager/templates/test/test-connection.yaml diff --git a/single-inst-oss-pro-kubernetes/tests/deployment_test.yaml b/nexus-repository-manager/tests/deployment_test.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/tests/deployment_test.yaml rename to nexus-repository-manager/tests/deployment_test.yaml diff --git a/single-inst-oss-pro-kubernetes/tests/ingress_test.yaml b/nexus-repository-manager/tests/ingress_test.yaml similarity index 100% rename from single-inst-oss-pro-kubernetes/tests/ingress_test.yaml rename to nexus-repository-manager/tests/ingress_test.yaml diff --git a/single-inst-oss-pro-kubernetes/values.yaml b/nexus-repository-manager/values.yaml similarity index 99% rename from single-inst-oss-pro-kubernetes/values.yaml rename to nexus-repository-manager/values.yaml index 4deb107..321f5c8 100644 --- a/single-inst-oss-pro-kubernetes/values.yaml +++ b/nexus-repository-manager/values.yaml @@ -7,7 +7,7 @@ deploymentStrategy: Recreate image: # Sonatype Official Public Image repository: sonatype/nexus3 - tag: 3.38.1 + tag: 3.41.1 pullPolicy: IfNotPresent nexus: diff --git a/aws-single-instance-resiliency/Chart.yaml b/nxrm-aws-resiliency/Chart.yaml similarity index 71% rename from aws-single-instance-resiliency/Chart.yaml rename to nxrm-aws-resiliency/Chart.yaml index c4fa6c6..d2968bb 100644 --- a/aws-single-instance-resiliency/Chart.yaml +++ b/nxrm-aws-resiliency/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nxrm-aws-resiliency -description: Helm chart for a Resilient Nexus Repository deployment in AWS +description: Resilient AWS Deployment of Sonatype Nexus Repository Manager - Universal Binary repository # A chart can be either an 'application' or a 'library' chart. # @@ -21,4 +21,21 @@ version: 41.1.0 # 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. # It is recommended to use it with quotes. -appVersion: "3.41.1" +appVersion: 3.41.1 + +keywords: + - artifacts + - dependency + - management + - sonatype + - nexus + - repository + - quickstart + - ci + - repository-manager + - nexus3 +home: https://www.sonatype.com/nexus-repository-oss +icon: https://sonatype.github.io/helm3-charts/NexusRepo_Vertical.svg +maintainers: + - name: Sonatype + diff --git a/aws-single-instance-resiliency/LICENSE b/nxrm-aws-resiliency/LICENSE similarity index 100% rename from aws-single-instance-resiliency/LICENSE rename to nxrm-aws-resiliency/LICENSE diff --git a/aws-single-instance-resiliency/README.md b/nxrm-aws-resiliency/README.md similarity index 88% rename from aws-single-instance-resiliency/README.md rename to nxrm-aws-resiliency/README.md index 56f8cf7..5b21a6b 100644 --- a/aws-single-instance-resiliency/README.md +++ b/nxrm-aws-resiliency/README.md @@ -1,3 +1,18 @@ + + # Helm Chart for a Resilient Nexus Repository Deployment in AWS This Helm chart configures the Kubernetes resources that are needed for a resilient Nexus Repository deployment on AWS as described in our documented [single-node cloud resilient deployment example using AWS](https://help.sonatype.com/repomanager3/planning-your-implementation/resiliency-and-high-availability/single-node-cloud-resilient-deployment-example-using-aws). diff --git a/aws-single-instance-resiliency/templates/NOTES.txt b/nxrm-aws-resiliency/templates/NOTES.txt similarity index 100% rename from aws-single-instance-resiliency/templates/NOTES.txt rename to nxrm-aws-resiliency/templates/NOTES.txt diff --git a/aws-single-instance-resiliency/templates/deployment.yaml b/nxrm-aws-resiliency/templates/deployment.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/deployment.yaml rename to nxrm-aws-resiliency/templates/deployment.yaml diff --git a/aws-single-instance-resiliency/templates/fluent-bit.yaml b/nxrm-aws-resiliency/templates/fluent-bit.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/fluent-bit.yaml rename to nxrm-aws-resiliency/templates/fluent-bit.yaml diff --git a/aws-single-instance-resiliency/templates/ingress.yaml b/nxrm-aws-resiliency/templates/ingress.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/ingress.yaml rename to nxrm-aws-resiliency/templates/ingress.yaml diff --git a/aws-single-instance-resiliency/templates/namespaces.yaml b/nxrm-aws-resiliency/templates/namespaces.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/namespaces.yaml rename to nxrm-aws-resiliency/templates/namespaces.yaml diff --git a/aws-single-instance-resiliency/templates/nxrm-logback-tasklogfile-override.yaml b/nxrm-aws-resiliency/templates/nxrm-logback-tasklogfile-override.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/nxrm-logback-tasklogfile-override.yaml rename to nxrm-aws-resiliency/templates/nxrm-logback-tasklogfile-override.yaml diff --git a/aws-single-instance-resiliency/templates/pv.yaml b/nxrm-aws-resiliency/templates/pv.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/pv.yaml rename to nxrm-aws-resiliency/templates/pv.yaml diff --git a/aws-single-instance-resiliency/templates/pvc.yaml b/nxrm-aws-resiliency/templates/pvc.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/pvc.yaml rename to nxrm-aws-resiliency/templates/pvc.yaml diff --git a/aws-single-instance-resiliency/templates/secret.yaml b/nxrm-aws-resiliency/templates/secret.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/secret.yaml rename to nxrm-aws-resiliency/templates/secret.yaml diff --git a/aws-single-instance-resiliency/templates/serviceaccount.yaml b/nxrm-aws-resiliency/templates/serviceaccount.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/serviceaccount.yaml rename to nxrm-aws-resiliency/templates/serviceaccount.yaml diff --git a/aws-single-instance-resiliency/templates/services.yaml b/nxrm-aws-resiliency/templates/services.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/services.yaml rename to nxrm-aws-resiliency/templates/services.yaml diff --git a/aws-single-instance-resiliency/templates/storageclass.yaml b/nxrm-aws-resiliency/templates/storageclass.yaml similarity index 100% rename from aws-single-instance-resiliency/templates/storageclass.yaml rename to nxrm-aws-resiliency/templates/storageclass.yaml diff --git a/aws-single-instance-resiliency/values.yaml b/nxrm-aws-resiliency/values.yaml similarity index 100% rename from aws-single-instance-resiliency/values.yaml rename to nxrm-aws-resiliency/values.yaml diff --git a/single-inst-oss-pro-kubernetes/templates/.DS_Store b/single-inst-oss-pro-kubernetes/templates/.DS_Store deleted file mode 100644 index ca5d0e6..0000000 Binary files a/single-inst-oss-pro-kubernetes/templates/.DS_Store and /dev/null differ diff --git a/upgrade.sh b/upgrade.sh new file mode 100755 index 0000000..b25afae --- /dev/null +++ b/upgrade.sh @@ -0,0 +1,39 @@ +#!/bin/sh +# +# Sonatype Nexus (TM) Open Source Version +# Copyright (c) 2008-present Sonatype, Inc. +# All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions. +# +# This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0, +# which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html. +# +# Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks +# of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the +# Eclipse Foundation. All other trademarks are the property of their respective owners. +# + +if [ $# != 3 ]; then + echo "Usage: $0