From c596e3d4e22356c54647f977aca0f07027c76816 Mon Sep 17 00:00:00 2001 From: Jeff Billimek Date: Mon, 17 Jun 2019 18:32:16 -0400 Subject: [PATCH] using standardized helm 'image.repository' instead of 'helm.repo' (#13698) Signed-off-by: Jeff Billimek --- stable/influxdb/Chart.yaml | 2 +- stable/influxdb/templates/deployment.yaml | 2 +- stable/influxdb/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/influxdb/Chart.yaml b/stable/influxdb/Chart.yaml index 1e21d135d9..bb3a07a59d 100755 --- a/stable/influxdb/Chart.yaml +++ b/stable/influxdb/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: influxdb -version: 1.1.6 +version: 1.1.7 appVersion: 1.7.3 description: Scalable datastore for metrics, events, and real-time analytics. keywords: diff --git a/stable/influxdb/templates/deployment.yaml b/stable/influxdb/templates/deployment.yaml index 2d4ea7e256..f8812dc400 100644 --- a/stable/influxdb/templates/deployment.yaml +++ b/stable/influxdb/templates/deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: {{ template "influxdb.fullname" . }} - image: "{{ .Values.image.repo }}:{{ .Values.image.tag }}" + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy | quote }} resources: {{ toYaml .Values.resources | indent 10 }} diff --git a/stable/influxdb/values.yaml b/stable/influxdb/values.yaml index 245191fb12..1b4348dda8 100644 --- a/stable/influxdb/values.yaml +++ b/stable/influxdb/values.yaml @@ -1,7 +1,7 @@ ## influxdb image version ## ref: https://hub.docker.com/r/library/influxdb/tags/ image: - repo: "influxdb" + repository: "influxdb" tag: "1.7.3-alpine" pullPolicy: IfNotPresent