Skip to content

Commit

Permalink
fix(privatek8s/datadog) ensure datadog agent runs on all nodes by upd…
Browse files Browse the repository at this point in the history
…ating tolerations (#5132)

Signed-off-by: Damien Duportal <[email protected]>
  • Loading branch information
dduportal authored Apr 12, 2024
1 parent 6e07a33 commit 35cce5f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions config/datadog_privatek8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,29 @@ datadog:
hostCAPath: /etc/kubernetes/certs/kubeletserver.crt
# Required as of Agent 7.35 because Kubelet certificates in AKS do not have a Subject Alternative Name (SAN) set.
tlsVerify: false
agents:
tolerations:
- key: "kubernetes.io/arch"
operator: "Equal"
value: "arm64"
effect: "NoSchedule"
- key: "CriticalAddonsOnly"
operator: "Equal"
value: "true"
effect: "NoSchedule"
- key: "jenkins"
operator: "Equal"
value: "infra.ci.jenkins.io"
effect: "NoSchedule"
- key: "jenkins"
operator: "Equal"
value: "release.ci.jenkins.io"
effect: "NoSchedule"
- key: "jenkins-component"
operator: "Equal"
value: "controller"
effect: "NoSchedule"
- key: "kubernetes.azure.com/scalesetpriority"
operator: "Equal"
value: "spot"
effect: "NoSchedule"

0 comments on commit 35cce5f

Please sign in to comment.