Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[stable/minio] Fix after-install help NOTES (#8349)
Browse files Browse the repository at this point in the history
* [stable/minio] Fix after-install help NOTES

This commit fixes the NOTES in the steps to access the new
installed Minio in localhost.

It was not constructing the right release parameter in the command:
``
export POD_NAME=$(kubectl get pods --namespace default -l "release=RELEASE_NAME" -o jsonpath="{.items[0].metadata.name}")
``

Signed-off-by: Obed N Munoz <[email protected]>

* bump version

Signed-off-by: David J. M. Karlsen <[email protected]>
  • Loading branch information
obedmr authored and k8s-ci-robot committed Oct 13, 2018
1 parent 41d2b42 commit 68da43e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/minio/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Minio is a high performance distributed object storage server, designed for large-scale private cloud infrastructure.
name: minio
version: 1.8.2
version: 1.8.3
appVersion: RELEASE.2018-09-12T18-49-56Z
keywords:
- storage
Expand Down
2 changes: 1 addition & 1 deletion stable/minio/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If release name contains chart name it will be used as a full name.
{{- if contains $name .Release.Name -}}
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- else -}}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- printf "%s" .Release.Name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{- end -}}
{{- end -}}
Expand Down

0 comments on commit 68da43e

Please sign in to comment.