mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/datadog] Add priorityClassName to Cluster Agent deployment (#15135)
Signed-off-by: Peter Rifel <pgrifel@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
82ec92f858
commit
f8500ca19d
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: datadog
|
||||
version: 1.31.3
|
||||
version: 1.31.4
|
||||
appVersion: 6.10.1
|
||||
description: DataDog Agent
|
||||
keywords:
|
||||
|
||||
@@ -305,6 +305,7 @@ helm install --name <RELEASE_NAME> \
|
||||
| `clusterAgent.metricsProvider.enabled` | Enable Datadog metrics as a source for HPA scaling | `false` |
|
||||
| `clusterAgent.clusterChecks.enabled` | Enable Cluster Checks on both the Cluster Agent and the Agent daemonset | `false` |
|
||||
| `clusterAgent.confd` | Additional check configurations (static and Autodiscovery) | `nil` |
|
||||
| `clusterAgent.priorityClassName` | Name of the priorityClass to apply to the Cluster Agent | `nil` |
|
||||
| `clusterAgent.resources.requests.cpu` | CPU resource requests | `200m` |
|
||||
| `clusterAgent.resources.limits.cpu` | CPU resource limits | `200m` |
|
||||
| `clusterAgent.resources.requests.memory` | Memory resource requests | `256Mi` |
|
||||
|
||||
@@ -33,6 +33,9 @@ spec:
|
||||
]
|
||||
}]
|
||||
spec:
|
||||
{{- if .Values.clusterAgent.priorityClassName }}
|
||||
priorityClassName: "{{ .Values.clusterAgent.priorityClassName }}"
|
||||
{{- end }}
|
||||
{{- if .Values.clusterAgent.image.pullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{ toYaml .Values.clusterAgent.image.pullSecrets | indent 8 }}
|
||||
|
||||
@@ -346,6 +346,11 @@ clusterAgent:
|
||||
# cpu: 200m
|
||||
# memory: 256Mi
|
||||
|
||||
## @param priorityclassName - string - optional
|
||||
## Name of the priorityClass to apply to the Cluster Agent
|
||||
|
||||
# priorityClassName: system-cluster-critical
|
||||
|
||||
## @param livenessProbe - object - optional
|
||||
## Override the agent's liveness probe logic from the default:
|
||||
## In case of issues with the probe, you can disable it with the
|
||||
|
||||
Reference in New Issue
Block a user