Skip to content

Commit

Permalink
fix: fluentbit is not deployed on new nodes (#229)
Browse files Browse the repository at this point in the history
#### Motivation

Fluentbit is not deployed on new nodes because of the karpenter
provisioner taints.

#### Modification

Add a toleration to the daemon set matching the provisioner taints.

#### Checklist



- [ ] Tests updated
- [ ] Docs updated
- [ ] Issue linked in Title
  • Loading branch information
paulfouquet authored Nov 7, 2023
1 parent 61e72c7 commit d8a99b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions infra/charts/fluentbit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ HC_Period 5
// FIXME: `livenessProbe` and `readinessProbe` deactivated https://github.com/aws/eks-charts/issues/995
livenessProbe: false,
readinessProbe: false,
tolerations: [
{ key: 'karpenter.sh/capacity-type', operator: 'Equal', value: 'spot', effect: 'NoSchedule' },
{ key: 'kubernetes.io/arch', operator: 'Equal', value: 'arm64', effect: 'NoSchedule' },
],
},
});
}
Expand Down

0 comments on commit d8a99b8

Please sign in to comment.