mirror of
https://github.com/bitnami/charts.git
synced 2026-03-08 00:37:41 +08:00
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:
@@ -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
|
||||
|
||||
@@ -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 -}}
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: postgresql
|
||||
version: 1.0.0
|
||||
version: 1.0.1
|
||||
appVersion: 10.4.0
|
||||
description: Chart for PostgreSQL
|
||||
keywords:
|
||||
|
||||
@@ -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 -}}
|
||||
|
||||
Reference in New Issue
Block a user