Skip to content

Commit

Permalink
fix: fluentbit is not deployed on new nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfouquet committed Nov 7, 2023
1 parent b5fe78a commit b147e90
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', value: 'spot', effect: 'NoSchedule', operator: 'Equal' },
{ key: 'kubernetes.io/arch', value: 'arm64', effect: 'NoSchedule', operator: 'Equal' },
],
},
});
}
Expand Down

0 comments on commit b147e90

Please sign in to comment.