File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ description: A Helm chart for Kubernetes
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 2.2.0
18
+ version : 2.2.1
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -33,13 +33,10 @@ spec:
33
33
{{- if .Values.fluentbit.priorityClassName }}
34
34
priorityClassName : {{ .Values.fluentbit.priorityClassName | quote }}
35
35
{{- end }}
36
+ {{- with .Values.fluentbit.affinity }}
36
37
affinity :
37
- nodeAffinity :
38
- requiredDuringSchedulingIgnoredDuringExecution :
39
- nodeSelectorTerms :
40
- - matchExpressions :
41
- - key : node-role.kubernetes.io/edge
42
- operator : DoesNotExist
38
+ {{ toYaml . | indent 4 }}
39
+ {{- end }}
43
40
{{- if .Values.fluentbit.secrets }}
44
41
secrets :
45
42
{{ toYaml .Values.fluentbit.secrets | indent 4 }}
Original file line number Diff line number Diff line change @@ -91,6 +91,14 @@ fluentbit:
91
91
additionalVolumes : []
92
92
# Pod volumes to mount into the container's filesystem.
93
93
additionalVolumesMounts : []
94
+ # affinity configuration for Fluent Bit pods. Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
95
+ affinity :
96
+ nodeAffinity :
97
+ requiredDuringSchedulingIgnoredDuringExecution :
98
+ nodeSelectorTerms :
99
+ - matchExpressions :
100
+ - key : node-role.kubernetes.io/edge
101
+ operator : DoesNotExist
94
102
# nodeSelector configuration for Fluent Bit pods. Ref: https://kubernetes.io/docs/user-guide/node-selection/
95
103
nodeSelector : {}
96
104
# Node tolerations applied to Fluent Bit pods. Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
You can’t perform that action at this time.
0 commit comments