Skip to content

Commit

Permalink
Merge pull request #9 from adamrushuk/bump-chart
Browse files Browse the repository at this point in the history
Added more NOTES and comments
  • Loading branch information
adamrushuk authored Sep 9, 2020
2 parents f1fb363 + 14b5e78 commit beb7806
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion charts/sonatype-nexus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: sonatype-nexus
description: Sonatype Nexus is an open source repository manager
type: application
# This is the chart version
version: 0.2.3
version: 0.2.4
# This is the version number of the application being deployed
appVersion: 3.27.0
keywords:
Expand All @@ -17,6 +17,7 @@ home: https://www.sonatype.com/nexus-repository-oss
icon: http://www.sonatype.org/nexus/content/uploads/2015/06/Nexus-Logo.jpg
sources:
- https://github.com/sonatype/nexus-public
- https://hub.docker.com/r/sonatype/nexus3/tags
maintainers:
- name: adamrushuk
email: [email protected]
9 changes: 7 additions & 2 deletions charts/sonatype-nexus/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
1. Application URL:

{{- if .Values.ingress.enabled }}
http{{ if $.Values.ingress.tls }}s{{ end }}://nexus.{{ .Values.nexus.baseDomain }}
{{- end }}
http{{ if $.Values.ingress.tls }}s{{ end }}://nexus.{{ .Values.nexus.baseDomain }}
{{- else }}
Run the command below to port-forward for local access:

kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ include "sonatype-nexus.fullname" . }} {{ .Values.nexus.nexusPort }}:{{ .Values.nexus.nexusPort }}

then navigate to: http://localhost:{{ .Values.nexus.nexusPort }}/
{{- end }}

2. Get Nexus admin password by running these commands:

Expand Down
1 change: 1 addition & 0 deletions charts/sonatype-nexus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ nexus:
dockerPort: 5000
nexusPort: 8081

# https://hub.docker.com/r/sonatype/nexus3/tags
image:
repository: sonatype/nexus3
pullPolicy: IfNotPresent
Expand Down

0 comments on commit beb7806

Please sign in to comment.