[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 <kivagant@gmail.com>
This commit is contained in:
Eugene Glotov
2019-05-23 10:20:28 -07:00
committed by Kubernetes Prow Robot
parent 36a916d5bd
commit dd70099876
2 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: datadog
version: 1.30.6
version: 1.30.7
appVersion: 6.10.1
description: DataDog Agent
keywords:
+21 -21
View File
@@ -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.