[stable/datadog] Update README (#23334)

* Correct default values

Signed-off-by: Xavier Lucas <xavier.lucas@datadoghq.com>

* Bump version

Signed-off-by: Xavier Lucas <xavier.lucas@datadoghq.com>
This commit is contained in:
Xavier Lucas
2020-07-27 05:16:19 -07:00
committed by GitHub
parent ad156cf933
commit 4d69d73c2e
3 changed files with 21 additions and 17 deletions
+4
View File
@@ -1,5 +1,9 @@
# Datadog changelog
## 2.3.40
* Update documentation for resource requests & limits default values.
## 2.3.39
* Propagate `datadog.checksd` to the clusterchecks runner to support custom checks there.
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: datadog
version: 2.3.39
version: 2.3.40
appVersion: "7"
description: Datadog Agent
keywords:
+16 -16
View File
@@ -344,10 +344,10 @@ helm install --name <RELEASE_NAME> \
| `agents.dnsConfig` | If set, configure dnsConfig options in datadog agent containers | `nil` |
| `agents.containers.agent.env` | Additional list of environment variables to use in the agent container | `nil` |
| `agents.containers.agent.logLevel` | Agent log verbosity | `INFO` |
| `agents.containers.agent.resources.limits.cpu` | CPU resource limits for the agent container | `200m` |
| `agents.containers.agent.resources.requests.cpu` | CPU resource requests for the agent container | `200m` |
| `agents.containers.agent.resources.limits.memory` | Memory resource limits for the agent container | `256Mi` |
| `agents.containers.agent.resources.requests.memory` | Memory resource requests for the agent container | `256Mi` |
| `agents.containers.agent.resources.limits.cpu` | CPU resource limits for the agent container | not set |
| `agents.containers.agent.resources.requests.cpu` | CPU resource requests for the agent container | not set |
| `agents.containers.agent.resources.limits.memory` | Memory resource limits for the agent container | not set |
| `agents.containers.agent.resources.requests.memory` | Memory resource requests for the agent container | not set |
| `agents.containers.agent.livenessProbe` | Overrides the default liveness probe | http check on /live with port 5555 |
| `agents.containers.agent.readinessProbe` | Overrides the default readiness probe | http check on /ready with port 5555 |
| `agents.containers.processAgent.env` | Additional list of environment variables to use in the process-agent container | `nil` |
@@ -368,10 +368,10 @@ helm install --name <RELEASE_NAME> \
| `agents.containers.systemProbe.resources.requests.cpu` | CPU resource requests for the system-probe container | `100m` |
| `agents.containers.systemProbe.resources.limits.memory` | Memory resource limits for the system-probe container | `200Mi` |
| `agents.containers.systemProbe.resources.requests.memory` | Memory resource requests for the system-probe container | `200Mi` |
| `agents.containers.initContainers.resources.limits.cpu` | CPU resource limits for the init containers container | `200m` |
| `agents.containers.initContainers.resources.requests.cpu` | CPU resource requests for the init containers container | `200m` |
| `agents.containers.initContainers.resources.limits.memory` | Memory resource limits for the init containers container | `256Mi` |
| `agents.containers.initContainers.resources.requests.memory` | Memory resource requests for the init containers container | `256Mi` |
| `agents.containers.initContainers.resources.limits.cpu` | CPU resource limits for the init containers container | not set |
| `agents.containers.initContainers.resources.requests.cpu` | CPU resource requests for the init containers container | not set |
| `agents.containers.initContainers.resources.limits.memory` | Memory resource limits for the init containers container | not set |
| `agents.containers.initContainers.resources.requests.memory` | Memory resource requests for the init containers container | not set |
| `agents.priorityClassName` | Which Priority Class to associate with the daemonset | `nil` |
| `agents.useConfigMap` | Configures a configmap to provide the agent configuration. Use this in combination with the `agent.customAgentConfig` parameter. | `false` |
| `agents.customAgentConfig` | Specify custom contents for the datadog agent config (datadog.yaml). Note the `agents.useConfigMap` parameter needs to be set to `true` for this parameter to be taken into account. | `{}` |
@@ -411,10 +411,10 @@ helm install --name <RELEASE_NAME> \
| `clusterAgent.priorityClassName` | Name of the priorityClass to apply to the Cluster Agent | `nil` |
| `clusterAgent.nodeSelector` | Node selectors to apply to the Cluster Agent deployment | `nil` |
| `clusterAgent.affinity` | Node affinities to apply to the Cluster Agent deployment | `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` |
| `clusterAgent.resources.limits.memory` | Memory resource limits | `256Mi` |
| `clusterAgent.resources.requests.cpu` | CPU resource requests | not set |
| `clusterAgent.resources.limits.cpu` | CPU resource limits | not set |
| `clusterAgent.resources.requests.memory` | Memory resource requests | not set |
| `clusterAgent.resources.limits.memory` | Memory resource limits | not set |
| `clusterAgent.tolerations` | List of node taints to tolerate | `[]` |
| `clusterAgent.healthPort` | Overrides the default health port used by the liveness and readiness endpoint | `5555` |
| `clusterAgent.livenessProbe` | Overrides the default liveness probe | `http check on /live with port 5555` |
@@ -427,10 +427,10 @@ helm install --name <RELEASE_NAME> \
| `clusterChecksRunner.enabled` | Enable Datadog agent deployment dedicated for running Cluster Checks. It allows having different resources (Request/Limit) for Cluster Checks agent pods. | `false` |
| `clusterChecksRunner.env` | Additional Datadog environment variables for Cluster Checks Deployment | `nil` |
| `clusterChecksRunner.createPodDisruptionBudget` | Enable a pod disruption budget to apply to the Cluster Checks pods | `false` |
| `clusterChecksRunner.resources.requests.cpu` | CPU resource requests | `200m` |
| `clusterChecksRunner.resources.limits.cpu` | CPU resource limits | `200m` |
| `clusterChecksRunner.resources.requests.memory` | Memory resource requests | `256Mi` |
| `clusterChecksRunner.resources.limits.memory` | Memory resource limits | `256Mi` |
| `clusterChecksRunner.resources.requests.cpu` | CPU resource requests | not set |
| `clusterChecksRunner.resources.limits.cpu` | CPU resource limits | not set |
| `clusterChecksRunner.resources.requests.memory` | Memory resource requests | not set |
| `clusterChecksRunner.resources.limits.memory` | Memory resource limits | not set |
| `clusterChecksRunner.nodeSelector` | Node selectors | `nil` |
| `clusterChecksRunner.tolerations` | List of node taints to tolerate | `nil` |
| `clusterChecksRunner.affinity` | Node affinities | avoid running pods on the same node |