diff --git a/stable/mongodb/Chart.yaml b/stable/mongodb/Chart.yaml index f0de5c5d14..2f2ce43a31 100644 --- a/stable/mongodb/Chart.yaml +++ b/stable/mongodb/Chart.yaml @@ -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: diff --git a/stable/mongodb/templates/_helpers.tpl b/stable/mongodb/templates/_helpers.tpl index f862a10de1..ec0d3418cd 100644 --- a/stable/mongodb/templates/_helpers.tpl +++ b/stable/mongodb/templates/_helpers.tpl @@ -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 -}}