[stable/mongodb] Use string instead of int in the tag (#5893)

* [stable/mongodb] Use string instead of int in the tag

* Increase chart version

* Use trimAll

* Use toString
This commit is contained in:
Carlos Rodríguez Hernández
2018-06-05 02:11:55 -07:00
committed by k8s-ci-robot
parent 8c14816e59
commit 2b4cebae03
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: mongodb
version: 2.0.6
version: 2.0.7
appVersion: 3.6.5
description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications.
keywords:
+1 -1
View File
@@ -21,6 +21,6 @@ Return the proper image name
{{- define "mongodb.image" -}}
{{- $registryName := .Values.image.registry -}}
{{- $repositoryName := .Values.image.repository -}}
{{- $tag := .Values.image.tag -}}
{{- $tag := .Values.image.tag | toString -}}
{{- printf "%s/%s:%s" $registryName $repositoryName $tag -}}
{{- end -}}