File tree 4 files changed +12
-2
lines changed
charts/logging-operator-fluent
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ This chart applies Fluentd and Fluent-bit custom resources to [Logging Operator]
31
31
| ` fluentbit.image.tag ` | Fluentbit container image tag | ` 1.1.3 ` |
32
32
| ` fluentbit.image.repository ` | Fluentbit container image repository | ` fluent/fluent-bit ` |
33
33
| ` fluentbit.image.pullPolicy ` | Fluentbit container pull policy | ` IfNotPresent ` |
34
+ | ` fluentbit.tolerations ` | Fluentbit tolerations | ` nil ` |
34
35
| ` fluentd.enabled ` | Install fluentd | true |
35
36
| ` fluentd.namespace ` | Specified fluentd installation namespace | same as operator namespace |
36
37
| ` fluentd.image.tag ` | Fluentd container image tag | ` v1.5.0 ` |
@@ -44,4 +45,5 @@ This chart applies Fluentd and Fluent-bit custom resources to [Logging Operator]
44
45
| ` fluentd.configReloaderImage.pullPolicy ` | Fluentd configReloaderImage container pull policy | ` IfNotPresent ` |
45
46
| ` fluentd.fluentdPvcSpec.accessModes ` | Fluentd persistence volume access modes | ` [ReadWriteOnce] ` |
46
47
| ` fluentd.fluentdPvcSpec.resources.requests.storage ` | Fluentd persistence volume size | ` 21Gi ` |
48
+ | ` fluentd.tolerations ` | Fluentd tolerations | ` nil ` |
47
49
| ` psp.enabled ` | Install PodSecurityPolicy | ` false ` |
Original file line number Diff line number Diff line change 16
16
prometheus.io/port : " 2020"
17
17
image : {{ toYaml .Values.fluentbit.image | nindent 4 }}
18
18
resources : {}
19
+ {{- if .Values.fluentbit.tolerations }}
20
+ tolerations : {{ toYaml .Values.fluentbit.tolerations | nindent 4 }}
21
+ {{- end }}
19
22
tls :
20
23
enabled : {{ .Values.tls.enabled }}
21
24
secretName : {{ .Values.tls.secretName | default (include "logging-operator-fluent.fullname" .) }}
22
25
sharedKey : {{ .Values.tls.sharedKey | default (derivePassword 1 "long" (.Release.Time | toString) .Release.Name .Chart.Name ) | b64enc | quote }}
23
- {{ end }}
26
+ {{ end }}
Original file line number Diff line number Diff line change 19
19
configReloaderImage : {{ toYaml .Values.fluentd.configReloaderImage | nindent 4 }}
20
20
resources : {}
21
21
fluentdPvcSpec : {{ toYaml .Values.fluentd.fluentdPvcSpec | nindent 4 }}
22
+ {{- if .Values.fluentd.tolerations }}
23
+ tolerations : {{ toYaml .Values.fluentd.tolerations | nindent 4 }}
24
+ {{- end }}
22
25
tls :
23
26
enabled : {{ .Values.tls.enabled }}
24
27
secretName : {{ .Values.tls.secretName | default (include "logging-operator-fluent.fullname" .) }}
25
28
sharedKey : {{ .Values.tls.sharedKey | default (derivePassword 1 "long" (.Release.Time | toString) .Release.Name .Chart.Name ) | b64enc | quote }}
26
29
serviceType : {{ .Values.fluentd.serviceType | default "ClusterIP" | quote }}
27
- {{ end }}
30
+ {{ end }}
Original file line number Diff line number Diff line change 10
10
fluentbit :
11
11
enabled : true
12
12
namespace : " "
13
+ tolerations :
13
14
image :
14
15
tag : " 1.1.3"
15
16
repository : " fluent/fluent-bit"
@@ -30,6 +31,7 @@ fluentd:
30
31
tag : " v0.2.2"
31
32
repository : " jimmidyson/configmap-reload"
32
33
pullPolicy : " IfNotPresent"
34
+ tolerations :
33
35
fluentdPvcSpec :
34
36
accessModes :
35
37
- ReadWriteOnce
You can’t perform that action at this time.
0 commit comments