We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d40809 + 377758c commit 79e9c18Copy full SHA for 79e9c18
charts/log-router/templates/daemonset.yaml
@@ -143,6 +143,9 @@ spec:
143
{{- if .Values.adminNamespace }}
144
- --admin-namespace={{ .Values.adminNamespace }}
145
{{- end }}
146
+ {{- if eq .Values.datasource "fs" }}
147
+ - --fs-dir={{ required "fsDatasourceDir is required for fs datasource" .Values.fsDatasourceDir }}
148
+ {{- end }}
149
volumeMounts:
150
- name: fluentconf
151
mountPath: /fluentd/etc
charts/log-router/values.yaml
@@ -28,6 +28,9 @@ crdMigrationMode: false
28
29
defaultConfigmap: "fluentd-config"
30
31
+# Use with datasource: fs, the fsDataSourceDir will be used for finding config files
32
+fsDatasourceDir: ""
33
+
34
image:
35
repository: vmware/kube-fluentd-operator
36
pullPolicy: IfNotPresent
0 commit comments