diff --git a/stable/grafana/Chart.yaml b/stable/grafana/Chart.yaml index e3721e8fe1..5c4d773cf5 100755 --- a/stable/grafana/Chart.yaml +++ b/stable/grafana/Chart.yaml @@ -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. diff --git a/stable/grafana/README.md b/stable/grafana/README.md index 3305a65148..d12bad104f 100644 --- a/stable/grafana/README.md +++ b/stable/grafana/README.md @@ -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` | diff --git a/stable/grafana/templates/deployment.yaml b/stable/grafana/templates/deployment.yaml index fecb6032e2..780bae7e7a 100644 --- a/stable/grafana/templates/deployment.yaml +++ b/stable/grafana/templates/deployment.yaml @@ -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 diff --git a/stable/grafana/values.yaml b/stable/grafana/values.yaml index 156fe4f627..9346868400 100644 --- a/stable/grafana/values.yaml +++ b/stable/grafana/values.yaml @@ -38,6 +38,9 @@ securityContext: runAsUser: 472 fsGroup: 472 +## Assign a PriorityClassName to pods if set +# priorityClassName: + downloadDashboardsImage: repository: appropriate/curl tag: latest