diff --git a/stable/datadog/CHANGELOG.md b/stable/datadog/CHANGELOG.md index c0e2310ed7..511f0580ac 100644 --- a/stable/datadog/CHANGELOG.md +++ b/stable/datadog/CHANGELOG.md @@ -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. diff --git a/stable/datadog/Chart.yaml b/stable/datadog/Chart.yaml index 0bcfb3b204..d78580a145 100644 --- a/stable/datadog/Chart.yaml +++ b/stable/datadog/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: datadog -version: 2.3.39 +version: 2.3.40 appVersion: "7" description: Datadog Agent keywords: diff --git a/stable/datadog/README.md b/stable/datadog/README.md index 4f74085415..3e69ebe8cc 100644 --- a/stable/datadog/README.md +++ b/stable/datadog/README.md @@ -344,10 +344,10 @@ helm install --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 \ | `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 \ | `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 \ | `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 |