From dd70099876ddd0c108c4206bc215bbfd03ffabce Mon Sep 17 00:00:00 2001 From: Eugene Glotov Date: Thu, 23 May 2019 20:20:29 +0300 Subject: [PATCH] [stable/datadog] Remove default resources requests and limits (#13138) Resources should not be limited by default because nobody knows where the chart will be installed to. Especially worth not to set CPU limits by default as per https://github.com/kubernetes/kubernetes/issues/67577 Signed-off-by: Eugene Glotov --- stable/datadog/Chart.yaml | 2 +- stable/datadog/values.yaml | 42 +++++++++++++++++++------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/stable/datadog/Chart.yaml b/stable/datadog/Chart.yaml index 37bf5f4cdb..14030e913e 100755 --- a/stable/datadog/Chart.yaml +++ b/stable/datadog/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: datadog -version: 1.30.6 +version: 1.30.7 appVersion: 6.10.1 description: DataDog Agent keywords: diff --git a/stable/datadog/values.yaml b/stable/datadog/values.yaml index d94932d144..55ec25e9ac 100644 --- a/stable/datadog/values.yaml +++ b/stable/datadog/values.yaml @@ -258,13 +258,13 @@ datadog: ## Make sure to keep requests and limits equal to keep the pods in the Guaranteed QoS class ## Ref: http://kubernetes.io/docs/user-guide/compute-resources/ # - resources: - requests: - cpu: 200m - memory: 256Mi - limits: - cpu: 200m - memory: 256Mi + resources: {} +# requests: +# cpu: 200m +# memory: 256Mi +# limits: +# cpu: 200m +# memory: 256Mi ## @param clusterAgent - object - required ## This is the Datadog Cluster Agent implementation that handles cluster-wide @@ -325,13 +325,13 @@ clusterAgent: ## @param resources - object -required ## Datadog cluster-agent resource requests and limits. # - resources: - requests: - cpu: 200m - memory: 256Mi - limits: - cpu: 200m - memory: 256Mi + resources: {} +# requests: +# cpu: 200m +# memory: 256Mi +# limits: +# cpu: 200m +# memory: 256Mi ## @param livenessProbe - object - optional ## Override the agent's liveness probe logic from the default: @@ -532,13 +532,13 @@ clusterchecksDeployment: ## @param resources - object -required ## Datadog clusterchecks-agent resource requests and limits. # - resources: - requests: - cpu: 200m - memory: 500Mi - limits: - cpu: 200m - memory: 500Mi + resources: {} +# requests: +# cpu: 200m +# memory: 500Mi +# limits: +# cpu: 200m +# memory: 500Mi ## @param affinity - object - optional ## Allow the ClusterChecks Deployment to schedule using affinity rules.