diff --git a/stable/grafana/Chart.yaml b/stable/grafana/Chart.yaml index 89c9d2b906..cb5d9d00b6 100644 --- a/stable/grafana/Chart.yaml +++ b/stable/grafana/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: grafana -version: 5.0.10 +version: 5.0.11 appVersion: 6.7.1 kubeVersion: "^1.8.0-0" description: The leading tool for querying and visualizing time series and metrics. diff --git a/stable/grafana/README.md b/stable/grafana/README.md index c96fa0c04e..b797d1bb06 100644 --- a/stable/grafana/README.md +++ b/stable/grafana/README.md @@ -159,6 +159,7 @@ You have to add --force to your helm upgrade command as the labels of the chart | `testFramework.enabled` | Whether to create test-related resources | `true` | | `testFramework.image` | `test-framework` image repository. | `bats/bats` | | `testFramework.tag` | `test-framework` image tag. | `v1.1.0` | +| `testFramework.imagePullPolicy` | `test-framework` image pull policy. | `IfNotPresent` | | `testFramework.securityContext` | `test-framework` securityContext | `{}` | | `downloadDashboards.env` | Environment variables to be passed to the `download-dashboards` container | `{}` | | `downloadDashboards.resources` | Resources of `download-dashboards` container | `{}` | diff --git a/stable/grafana/templates/tests/test.yaml b/stable/grafana/templates/tests/test.yaml index 7b2475c62c..cdc86e5f2d 100644 --- a/stable/grafana/templates/tests/test.yaml +++ b/stable/grafana/templates/tests/test.yaml @@ -34,6 +34,7 @@ spec: containers: - name: {{ .Release.Name }}-test image: "{{ .Values.testFramework.image}}:{{ .Values.testFramework.tag }}" + imagePullPolicy: "{{ .Values.testFramework.imagePullPolicy}}" command: ["/opt/bats/bin/bats", "-t", "/tests/run.sh"] volumeMounts: - mountPath: /tests diff --git a/stable/grafana/values.yaml b/stable/grafana/values.yaml index c02a875d3e..c7d431bf22 100644 --- a/stable/grafana/values.yaml +++ b/stable/grafana/values.yaml @@ -64,6 +64,7 @@ testFramework: enabled: true image: "bats/bats" tag: "v1.1.0" + imagePullPolicy: IfNotPresent securityContext: {} securityContext: