summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging_mux/templates/mux.j2
diff options
context:
space:
mode:
authorNoriko Hosoi <nhosoi@redhat.com>2017-06-29 12:43:52 -0700
committerJeff Cantrill <jcantril@redhat.com>2017-07-28 16:10:49 -0400
commit61fe309c853946585a2a6a6404ef89dc5ebfb9f0 (patch)
tree6a0338fe4573cc81e54b03641eb1eb14fa045209 /roles/openshift_logging_mux/templates/mux.j2
parentee4524068c10df43eeb65bf2ab6606140743a4d5 (diff)
downloadopenshift-61fe309c853946585a2a6a6404ef89dc5ebfb9f0.tar.gz
openshift-61fe309c853946585a2a6a6404ef89dc5ebfb9f0.tar.bz2
openshift-61fe309c853946585a2a6a6404ef89dc5ebfb9f0.tar.xz
openshift-61fe309c853946585a2a6a6404ef89dc5ebfb9f0.zip
Impl fluentd file buffer
(cherry picked from commit 231a7c4ce27ff944d9e14169062f487f57c94dd6)
Diffstat (limited to 'roles/openshift_logging_mux/templates/mux.j2')
-rw-r--r--roles/openshift_logging_mux/templates/mux.j214
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/openshift_logging_mux/templates/mux.j2 b/roles/openshift_logging_mux/templates/mux.j2
index 2b3b64bb8..e43d9d397 100644
--- a/roles/openshift_logging_mux/templates/mux.j2
+++ b/roles/openshift_logging_mux/templates/mux.j2
@@ -66,6 +66,8 @@ spec:
- name: muxcerts
mountPath: /etc/fluent/muxkeys
readOnly: true
+ - name: filebufferstorage
+ mountPath: /var/lib/fluentd
env:
- name: "K8S_HOST_URL"
value: "{{openshift_logging_mux_master_url}}"
@@ -115,6 +117,8 @@ spec:
resourceFieldRef:
containerName: "mux"
resource: limits.memory
+ - name: "FILE_BUFFER_LIMIT"
+ value: "{{ openshift_logging_mux_file_buffer_limit | default('2Gi') }}"
volumes:
- name: config
configMap:
@@ -131,3 +135,13 @@ spec:
- name: muxcerts
secret:
secretName: logging-mux
+ - name: filebufferstorage
+{% if openshift_logging_mux_file_buffer_storage_type == 'pvc' %}
+ persistentVolumeClaim:
+ claimName: {{ openshift_logging_mux_file_buffer_pvc_name }}
+{% elif openshift_logging_mux_file_buffer_storage_type == 'hostmount' %}
+ hostPath:
+ path: "/var/log/fluentd"
+{% else %}
+ emptydir: {}
+{% endif %}