mux.j2 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. apiVersion: "v1"
  2. kind: "DeploymentConfig"
  3. metadata:
  4. name: "{{deploy_name}}"
  5. labels:
  6. provider: openshift
  7. component: "{{component}}"
  8. logging-infra: "{{logging_component}}"
  9. spec:
  10. replicas: {{mux_replicas|default(1)}}
  11. selector:
  12. provider: openshift
  13. component: "{{component}}"
  14. logging-infra: "{{logging_component}}"
  15. strategy:
  16. rollingParams:
  17. intervalSeconds: 1
  18. timeoutSeconds: 600
  19. updatePeriodSeconds: 1
  20. type: Rolling
  21. template:
  22. metadata:
  23. name: "{{deploy_name}}"
  24. labels:
  25. logging-infra: "{{logging_component}}"
  26. provider: openshift
  27. component: "{{component}}"
  28. spec:
  29. serviceAccountName: aggregated-logging-mux
  30. {% if mux_node_selector is iterable and mux_node_selector | length > 0 %}
  31. nodeSelector:
  32. {% for key, value in mux_node_selector.items() %}
  33. {{key}}: "{{value}}"
  34. {% endfor %}
  35. {% endif %}
  36. containers:
  37. - name: "mux"
  38. image: {{image}}
  39. imagePullPolicy: IfNotPresent
  40. {% if (mux_memory_limit is defined and mux_memory_limit is not none) or (mux_cpu_limit is defined and mux_cpu_limit is not none) or (mux_cpu_request is defined and mux_cpu_request is not none) %}
  41. resources:
  42. {% if (mux_memory_limit is defined and mux_memory_limit is not none) or (mux_cpu_limit is defined and mux_cpu_limit is not none) %}
  43. limits:
  44. {% if mux_cpu_limit is not none %}
  45. cpu: "{{mux_cpu_limit}}"
  46. {% endif %}
  47. {% if mux_memory_limit is not none %}
  48. memory: "{{mux_memory_limit}}"
  49. {% endif %}
  50. {% endif %}
  51. {% if (mux_memory_limit is defined and mux_memory_limit is not none) or (mux_cpu_request is defined and mux_cpu_request is not none) %}
  52. requests:
  53. {% if mux_cpu_request is not none %}
  54. cpu: "{{mux_cpu_request}}"
  55. {% endif %}
  56. {% if mux_memory_limit is not none %}
  57. memory: "{{mux_memory_limit}}"
  58. {% endif %}
  59. {% endif %}
  60. {% endif %}
  61. ports:
  62. - containerPort: {{ openshift_logging_mux_port }}
  63. name: mux-forward
  64. volumeMounts:
  65. - name: config
  66. mountPath: /etc/fluent/configs.d/user
  67. readOnly: true
  68. - name: certs
  69. mountPath: /etc/fluent/keys
  70. readOnly: true
  71. - name: dockerhostname
  72. mountPath: /etc/docker-hostname
  73. readOnly: true
  74. - name: localtime
  75. mountPath: /etc/localtime
  76. readOnly: true
  77. - name: muxcerts
  78. mountPath: /etc/fluent/muxkeys
  79. readOnly: true
  80. - name: filebufferstorage
  81. mountPath: /var/lib/fluentd
  82. env:
  83. - name: "K8S_HOST_URL"
  84. value: "{{openshift_logging_mux_master_url}}"
  85. - name: "ES_HOST"
  86. value: "{{openshift_logging_mux_app_host}}"
  87. - name: "ES_PORT"
  88. value: "{{openshift_logging_mux_app_port}}"
  89. - name: "ES_CLIENT_CERT"
  90. value: "{{openshift_logging_mux_app_client_cert}}"
  91. - name: "ES_CLIENT_KEY"
  92. value: "{{openshift_logging_mux_app_client_key}}"
  93. - name: "ES_CA"
  94. value: "{{openshift_logging_mux_app_ca}}"
  95. - name: "OPS_HOST"
  96. value: "{{openshift_logging_mux_ops_host}}"
  97. - name: "OPS_PORT"
  98. value: "{{openshift_logging_mux_ops_port}}"
  99. - name: "OPS_CLIENT_CERT"
  100. value: "{{openshift_logging_mux_ops_client_cert}}"
  101. - name: "OPS_CLIENT_KEY"
  102. value: "{{openshift_logging_mux_ops_client_key}}"
  103. - name: "OPS_CA"
  104. value: "{{openshift_logging_mux_ops_ca}}"
  105. - name: "JOURNAL_SOURCE"
  106. value: "{{openshift_logging_mux_journal_source | default('')}}"
  107. - name: "JOURNAL_READ_FROM_HEAD"
  108. value: "{{openshift_logging_mux_journal_read_from_head|lower}}"
  109. - name: FORWARD_LISTEN_HOST
  110. value: "{{ openshift_logging_mux_hostname }}"
  111. - name: FORWARD_LISTEN_PORT
  112. value: "{{ openshift_logging_mux_port }}"
  113. - name: USE_MUX
  114. value: "true"
  115. - name: "BUFFER_QUEUE_LIMIT"
  116. value: "{{ openshift_logging_mux_buffer_queue_limit }}"
  117. - name: "BUFFER_SIZE_LIMIT"
  118. value: "{{ openshift_logging_mux_buffer_size_limit }}"
  119. - name: "MUX_CPU_LIMIT"
  120. valueFrom:
  121. resourceFieldRef:
  122. containerName: "mux"
  123. resource: limits.cpu
  124. - name: "MUX_MEMORY_LIMIT"
  125. valueFrom:
  126. resourceFieldRef:
  127. containerName: "mux"
  128. resource: limits.memory
  129. - name: "FILE_BUFFER_LIMIT"
  130. value: "{{ openshift_logging_mux_file_buffer_limit | default('2Gi') }}"
  131. {% if openshift_logging_mux_remote_syslog is defined and openshift_logging_mux_remote_syslog %}
  132. - name: USE_REMOTE_SYSLOG
  133. value: "true"
  134. {% endif %}
  135. {% if openshift_logging_mux_remote_syslog_host is defined %}
  136. - name: REMOTE_SYSLOG_HOST
  137. value: "{{ openshift_logging_mux_remote_syslog_host }}"
  138. {% endif %}
  139. {% if openshift_logging_mux_remote_syslog_port is defined %}
  140. - name: REMOTE_SYSLOG_PORT
  141. value: "{{ openshift_logging_mux_remote_syslog_port }}"
  142. {% endif %}
  143. {% if openshift_logging_mux_remote_syslog_severity is defined %}
  144. - name: REMOTE_SYSLOG_SEVERITY
  145. value: "{{ openshift_logging_mux_remote_syslog_severity }}"
  146. {% endif %}
  147. {% if openshift_logging_mux_remote_syslog_facility is defined %}
  148. - name: REMOTE_SYSLOG_FACILITY
  149. value: "{{ openshift_logging_mux_remote_syslog_facility }}"
  150. {% endif %}
  151. {% if openshift_logging_mux_remote_syslog_remove_tag_prefix is defined %}
  152. - name: REMOTE_SYSLOG_REMOVE_TAG_PREFIX
  153. value: "{{ openshift_logging_mux_remote_syslog_remove_tag_prefix }}"
  154. {% endif %}
  155. {% if openshift_logging_mux_remote_syslog_tag_key is defined %}
  156. - name: REMOTE_SYSLOG_TAG_KEY
  157. value: "{{ openshift_logging_mux_remote_syslog_tag_key }}"
  158. {% endif %}
  159. {% if openshift_logging_mux_remote_syslog_use_record is defined %}
  160. - name: REMOTE_SYSLOG_USE_RECORD
  161. value: "{{ openshift_logging_mux_remote_syslog_use_record }}"
  162. {% endif %}
  163. {% if openshift_logging_mux_remote_syslog_payload_key is defined %}
  164. - name: REMOTE_SYSLOG_PAYLOAD_KEY
  165. value: "{{ openshift_logging_mux_remote_syslog_payload_key }}"
  166. {% endif %}
  167. volumes:
  168. - name: config
  169. configMap:
  170. name: logging-mux
  171. - name: certs
  172. secret:
  173. secretName: logging-fluentd
  174. - name: dockerhostname
  175. hostPath:
  176. path: /etc/hostname
  177. - name: localtime
  178. hostPath:
  179. path: /etc/localtime
  180. - name: muxcerts
  181. secret:
  182. secretName: logging-mux
  183. - name: filebufferstorage
  184. {% if openshift_logging_mux_file_buffer_storage_type == 'pvc' %}
  185. persistentVolumeClaim:
  186. claimName: {{ openshift_logging_mux_file_buffer_pvc_name }}
  187. {% elif openshift_logging_mux_file_buffer_storage_type == 'hostmount' %}
  188. hostPath:
  189. path: "/var/log/fluentd"
  190. {% else %}
  191. emptydir: {}
  192. {% endif %}