Skip to content

Commit

Permalink
refactor: improve readibility
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfouquet committed Nov 7, 2023
1 parent b147e90 commit 4fcda81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/charts/fluentbit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ HC_Period 5
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' },
{ 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 4fcda81

Please sign in to comment.