fluentd.j2 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. apiVersion: extensions/v1beta1
  2. kind: "DaemonSet"
  3. metadata:
  4. name: "{{ daemonset_name }}"
  5. labels:
  6. provider: openshift
  7. component: "{{ daemonset_component }}"
  8. logging-infra: "{{ daemonset_component }}"
  9. spec:
  10. selector:
  11. matchLabels:
  12. provider: openshift
  13. component: "{{ daemonset_component }}"
  14. updateStrategy:
  15. type: RollingUpdate
  16. rollingUpdate:
  17. minReadySeconds: 600
  18. template:
  19. metadata:
  20. name: "{{ daemonset_container_name }}"
  21. labels:
  22. logging-infra: "{{ daemonset_component }}"
  23. provider: openshift
  24. component: "{{ daemonset_component }}"
  25. spec:
  26. serviceAccountName: "{{ daemonset_serviceAccount }}"
  27. nodeSelector:
  28. {{ fluentd_nodeselector_key }}: "{{ fluentd_nodeselector_value }}"
  29. containers:
  30. - name: "{{ daemonset_container_name }}"
  31. image: "{{ openshift_logging_fluentd_image_prefix }}{{ daemonset_name }}:{{ openshift_logging_fluentd_image_version }}"
  32. imagePullPolicy: Always
  33. securityContext:
  34. privileged: true
  35. resources:
  36. limits:
  37. cpu: {{ openshift_logging_fluentd_cpu_limit }}
  38. memory: {{ openshift_logging_fluentd_memory_limit }}
  39. requests:
  40. memory: {{ openshift_logging_fluentd_memory_limit }}
  41. volumeMounts:
  42. - name: runlogjournal
  43. mountPath: /run/log/journal
  44. - name: varlog
  45. mountPath: /var/log
  46. - name: varlibdockercontainers
  47. mountPath: /var/lib/docker/containers
  48. readOnly: true
  49. - name: config
  50. mountPath: /etc/fluent/configs.d/user
  51. readOnly: true
  52. - name: certs
  53. mountPath: /etc/fluent/keys
  54. readOnly: true
  55. - name: dockerhostname
  56. mountPath: /etc/docker-hostname
  57. readOnly: true
  58. - name: localtime
  59. mountPath: /etc/localtime
  60. readOnly: true
  61. - name: dockercfg
  62. mountPath: /etc/sysconfig/docker
  63. readOnly: true
  64. - name: dockerdaemoncfg
  65. mountPath: /etc/docker
  66. readOnly: true
  67. - name: filebufferstorage
  68. mountPath: /var/lib/fluentd
  69. {% if openshift_logging_mux_client_mode is defined %}
  70. - name: muxcerts
  71. mountPath: /etc/fluent/muxkeys
  72. readOnly: true
  73. {% endif %}
  74. env:
  75. - name: "K8S_HOST_URL"
  76. value: "{{ openshift_logging_fluentd_master_url }}"
  77. - name: "ES_HOST"
  78. value: "{{ app_host }}"
  79. - name: "ES_PORT"
  80. value: "{{ app_port }}"
  81. - name: "ES_CLIENT_CERT"
  82. value: "{{ openshift_logging_fluentd_app_client_cert }}"
  83. - name: "ES_CLIENT_KEY"
  84. value: "{{ openshift_logging_fluentd_app_client_key }}"
  85. - name: "ES_CA"
  86. value: "{{ openshift_logging_fluentd_app_ca }}"
  87. - name: "OPS_HOST"
  88. value: "{{ ops_host }}"
  89. - name: "OPS_PORT"
  90. value: "{{ ops_port }}"
  91. - name: "OPS_CLIENT_CERT"
  92. value: "{{ openshift_logging_fluentd_ops_client_cert }}"
  93. - name: "OPS_CLIENT_KEY"
  94. value: "{{ openshift_logging_fluentd_ops_client_key }}"
  95. - name: "OPS_CA"
  96. value: "{{ openshift_logging_fluentd_ops_ca }}"
  97. - name: "ES_COPY"
  98. value: "false"
  99. - name: "JOURNAL_SOURCE"
  100. value: "{{ openshift_logging_fluentd_journal_source | default('') }}"
  101. - name: "JOURNAL_READ_FROM_HEAD"
  102. value: "{{ openshift_logging_fluentd_journal_read_from_head | lower }}"
  103. - name: "BUFFER_QUEUE_LIMIT"
  104. value: "{{ openshift_logging_fluentd_buffer_queue_limit }}"
  105. - name: "BUFFER_SIZE_LIMIT"
  106. value: "{{ openshift_logging_fluentd_buffer_size_limit }}"
  107. - name: "FLUENTD_CPU_LIMIT"
  108. valueFrom:
  109. resourceFieldRef:
  110. containerName: "{{ daemonset_container_name }}"
  111. resource: limits.cpu
  112. - name: "FLUENTD_MEMORY_LIMIT"
  113. valueFrom:
  114. resourceFieldRef:
  115. containerName: "{{ daemonset_container_name }}"
  116. resource: limits.memory
  117. - name: "FILE_BUFFER_LIMIT"
  118. value: "{{ openshift_logging_fluentd_file_buffer_limit | default('1Gi') }}"
  119. {% if openshift_logging_mux_client_mode is defined %}
  120. - name: "MUX_CLIENT_MODE"
  121. value: "{{ openshift_logging_mux_client_mode }}"
  122. {% endif %}
  123. volumes:
  124. - name: runlogjournal
  125. hostPath:
  126. path: /run/log/journal
  127. - name: varlog
  128. hostPath:
  129. path: /var/log
  130. - name: varlibdockercontainers
  131. hostPath:
  132. path: /var/lib/docker/containers
  133. - name: config
  134. configMap:
  135. name: logging-fluentd
  136. - name: certs
  137. secret:
  138. secretName: logging-fluentd
  139. - name: dockerhostname
  140. hostPath:
  141. path: /etc/hostname
  142. - name: localtime
  143. hostPath:
  144. path: /etc/localtime
  145. - name: dockercfg
  146. hostPath:
  147. path: /etc/sysconfig/docker
  148. - name: dockerdaemoncfg
  149. hostPath:
  150. path: /etc/docker
  151. {% if openshift_logging_mux_client_mode is defined %}
  152. - name: muxcerts
  153. secret:
  154. secretName: logging-mux
  155. {% endif %}
  156. - name: filebufferstorage
  157. hostPath:
  158. path: "/var/lib/fluentd"