Fix ES helm chart testing issue using tag

Reviewers: tomas, jsalmeron

Reviewed By: tomas, jsalmeron

Maniphest Tasks: T26128

Differential Revision: http://phabricator.bitnami.com:8080/D27133
This commit is contained in:
Carlos Rodriguez Hernandez
2018-06-04 14:27:49 +00:00
parent 9dbd80b6b7
commit 657025be21
6 changed files with 11 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ name: consul
home: https://www.consul.io/
sources:
- https://github.com/bitnami/consul
version: 0.0.1
version: 0.0.2
appVersion: 1.0.6
description: Highly available and distributed service discovery and key-value store
designed with support for the modern data center to make distributed systems and
@@ -11,4 +11,4 @@ icon: https://raw.githubusercontent.com/hashicorp/consul/bce3809dfca37b883828c37
maintainers:
- name: bitnami-bot
email: containers@bitnami.com
engine: gotpl
engine: gotpl

View File

@@ -27,6 +27,6 @@ Return the proper Consul image name
*/}}
{{- define "consul.image" -}}
{{- $registryName := default "docker.io" .Values.image.registry -}}
{{- $tag := default "latest" .Values.image.tag -}}
{{- $tag := default "latest" .Values.image.tag | quote | trimAll "\"" -}}
{{- printf "%s/%s:%s" $registryName .Values.image.repository $tag -}}
{{- end -}}
{{- end -}}

View File

@@ -1,5 +1,5 @@
name: mysql
version: 1.1.0
version: 1.1.1
appVersion: 5.7.22
description: Chart to create a Highly available MySQL cluster
keywords:

View File

@@ -32,7 +32,7 @@ Return the proper MySQL image name
*/}}
{{- define "mysql.image" -}}
{{- $registryName := default "docker.io" .Values.image.registry -}}
{{- $tag := default "latest" .Values.image.tag -}}
{{- $tag := default "latest" .Values.image.tag | quote | trimAll "\"" -}}
{{- printf "%s/%s:%s" $registryName .Values.image.repository $tag -}}
{{- end }}
@@ -41,6 +41,6 @@ Return the proper MySQL metrics exporter image name
*/}}
{{- define "metrics.image" -}}
{{- $registryName := default "docker.io" .Values.metrics.image.registry -}}
{{- $tag := default "latest" .Values.metrics.image.tag -}}
{{- $tag := default "latest" .Values.metrics.image.tag | quote | trimAll "\"" -}}
{{- printf "%s/%s:%s" $registryName .Values.metrics.image.repository $tag -}}
{{- end }}

View File

@@ -1,5 +1,5 @@
name: postgresql
version: 1.0.0
version: 1.0.1
appVersion: 10.4.0
description: Chart for PostgreSQL
keywords:

View File

@@ -40,7 +40,7 @@ Return the proper PostgreSQL image name
*/}}
{{- define "postgresql.image" -}}
{{- $registryName := default "docker.io" .Values.image.registry -}}
{{- $tag := default "latest" .Values.image.tag -}}
{{- $tag := default "latest" .Values.image.tag | quote | trimAll "\"" -}}
{{- printf "%s/%s:%s" $registryName .Values.image.repository $tag -}}
{{- end -}}
@@ -49,6 +49,6 @@ Return the proper PostgreSQL metrics image name
*/}}
{{- define "metrics.image" -}}
{{- $registryName := default "docker.io" .Values.metrics.image.registry -}}
{{- $tag := default "latest" .Values.metrics.image.tag -}}
{{- $tag := default "latest" .Values.metrics.image.tag | quote | trimAll "\"" -}}
{{- printf "%s/%s:%s" $registryName .Values.metrics.image.repository $tag -}}
{{- end -}}
{{- end -}}