[stable/grafana] Add variable to optionally set priorityClassName (#9427)

* Add variable to optionally set priorityClassName

Signed-off-by: Chris O'Brien <chrisob91@gmail.com>

* Bump minor version instead of patch version

Signed-off-by: Chris O'Brien <chrisob91@gmail.com>
This commit is contained in:
chrisob
2018-11-26 09:11:58 -08:00
committed by k8s-ci-robot
parent 32826be53d
commit 353ba5ef64
4 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: grafana
version: 1.18.0
version: 1.19.0
appVersion: 5.3.4
kubeVersion: "^1.8.0-0"
description: The leading tool for querying and visualizing time series and metrics.
+1
View File
@@ -36,6 +36,7 @@ The command removes all the Kubernetes components associated with the chart and
| `livenessProbe` | Liveness Probe settings | `{ "httpGet": { "path": "/api/health", "port": 3000 } "initialDelaySeconds": 60, "timeoutSeconds": 30, "failureThreshold": 10 }` |
| `readinessProbe` | Rediness Probe settings | `{ "httpGet": { "path": "/api/health", "port": 3000 } }`|
| `securityContext` | Deployment securityContext | `{"runAsUser": 472, "fsGroup": 472}` |
| `priorityClassName` | Name of Priority Class to assign pods | `nil` |
| `image.repository` | Image repository | `grafana/grafana` |
| `image.tag` | Image tag. (`Must be >= 5.0.0`) | `5.3.4` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
+3
View File
@@ -40,6 +40,9 @@ spec:
securityContext:
{{ toYaml .Values.securityContext | indent 8 }}
{{- end }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName }}
{{- end }}
{{- if .Values.dashboards }}
initContainers:
- name: download-dashboards
+3
View File
@@ -38,6 +38,9 @@ securityContext:
runAsUser: 472
fsGroup: 472
## Assign a PriorityClassName to pods if set
# priorityClassName:
downloadDashboardsImage:
repository: appropriate/curl
tag: latest