# The following YAML contains the minimum configuration required to deploy the Datadog Agent
# on your cluster. Update it accordingly to your needs
datadog:
# here we use a Qovery secret to retrieve the Datadog API Key (See next step)
apiKey: qovery.env.DD_API_KEY
# Update the site depending on where you want to store your data in Datadog
site: datadoghq.eu
# Update the cluster name with the name of your choice
clusterName: fereall
agents:
tolerations:
- operator: Exists
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: eks.amazonaws.com/compute-type
operator: NotIn
values:
- fargate
here is an example values.yaml, you will have to adapt based on your configuration.
# The following YAML contains the minimum configuration required to deploy the Datadog Agent
# on your cluster. Update it accordingly to your needs
datadog:
# here we use a Qovery secret to retrieve the Datadog API Key (See next step)
apiKey: qovery.env.DD_API_KEY
# Update the site depending on where you want to store your data in Datadog
site: datadoghq.eu
# Update the cluster name with the name of your choice
clusterName: fereall
clusterAgent:
priorityClassName: your_priorityClass
agents:
# agents.priorityClassName -- Sets PriorityClassName if defined
priorityClassName:
tolerations:
- operator: Exists
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: eks.amazonaws.com/compute-type
operator: NotIn
values:
- fargate
I added
clusterAgent:
priorityClassName: your_priorityClass
agents:
# agents.priorityClassName -- Sets PriorityClassName if defined
priorityClassName:
I think this may be enough.
Please let me know if you need more assistance on this topic.