mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
@@ -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.
|
||||
|
||||
@@ -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` |
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -38,6 +38,9 @@ securityContext:
|
||||
runAsUser: 472
|
||||
fsGroup: 472
|
||||
|
||||
## Assign a PriorityClassName to pods if set
|
||||
# priorityClassName:
|
||||
|
||||
downloadDashboardsImage:
|
||||
repository: appropriate/curl
|
||||
tag: latest
|
||||
|
||||
Reference in New Issue
Block a user