kibana.j2 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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: {{ kibana_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-kibana
  30. {% if kibana_node_selector is iterable and kibana_node_selector | length > 0 %}
  31. nodeSelector:
  32. {% for key, value in kibana_node_selector.items() %}
  33. {{ key }}: "{{ value }}"
  34. {% endfor %}
  35. {% endif %}
  36. containers:
  37. -
  38. name: "kibana"
  39. image: {{ image }}
  40. imagePullPolicy: IfNotPresent
  41. {% if (kibana_memory_limit is defined and kibana_memory_limit is not none and kibana_memory_limit != "") or (kibana_cpu_limit is defined and kibana_cpu_limit is not none and kibana_cpu_limit != "") or (kibana_cpu_request is defined and kibana_cpu_request is not none and kibana_cpu_request != "") %}
  42. resources:
  43. {% if (kibana_memory_limit is defined and kibana_memory_limit is not none and kibana_memory_limit != "") or (kibana_cpu_limit is defined and kibana_cpu_limit is not none and kibana_cpu_limit != "") %}
  44. limits:
  45. {% if kibana_cpu_limit is not none and kibana_cpu_limit != "" %}
  46. cpu: "{{ kibana_cpu_limit }}"
  47. {% endif %}
  48. {% if kibana_memory_limit is not none and kibana_memory_limit != "" %}
  49. memory: "{{ kibana_memory_limit }}"
  50. {% endif %}
  51. {% endif %}
  52. {% if (kibana_memory_limit is defined and kibana_memory_limit is not none and kibana_memory_limit != "") or (kibana_cpu_request is defined and kibana_cpu_request is not none and kibana_cpu_request != "") %}
  53. requests:
  54. {% if kibana_cpu_request is not none and kibana_cpu_request != "" %}
  55. cpu: "{{ kibana_cpu_request }}"
  56. {% endif %}
  57. {% if kibana_memory_limit is not none and kibana_memory_limit != "" %}
  58. memory: "{{ kibana_memory_limit }}"
  59. {% endif %}
  60. {% endif %}
  61. {% endif %}
  62. env:
  63. - name: "ES_HOST"
  64. value: "{{ es_host }}"
  65. - name: "ES_PORT"
  66. value: "{{ es_port }}"
  67. -
  68. name: "KIBANA_MEMORY_LIMIT"
  69. valueFrom:
  70. resourceFieldRef:
  71. containerName: kibana
  72. resource: limits.memory
  73. {% for key, value in kibana_env_vars.items() %}
  74. - name: "{{ key }}"
  75. value: "{{ value }}"
  76. {% endfor %}
  77. volumeMounts:
  78. - name: kibana
  79. mountPath: /etc/kibana/keys
  80. readOnly: true
  81. readinessProbe:
  82. exec:
  83. command:
  84. - "/usr/share/kibana/probe/readiness.sh"
  85. initialDelaySeconds: 5
  86. timeoutSeconds: 4
  87. periodSeconds: 5
  88. -
  89. name: "kibana-proxy"
  90. image: {{ proxy_image }}
  91. imagePullPolicy: IfNotPresent
  92. {% if (kibana_proxy_memory_limit is defined and kibana_proxy_memory_limit is not none and kibana_proxy_memory_limit != "") or (kibana_proxy_cpu_limit is defined and kibana_proxy_cpu_limit is not none and kibana_proxy_cpu_limit != "") or (kibana_proxy_cpu_request is defined and kibana_proxy_cpu_request is not none and kibana_proxy_cpu_request != "") %}
  93. resources:
  94. {% if (kibana_proxy_memory_limit is defined and kibana_proxy_memory_limit is not none and kibana_proxy_memory_limit != "") or (kibana_proxy_cpu_limit is defined and kibana_proxy_cpu_limit is not none and kibana_proxy_cpu_limit != "") %}
  95. limits:
  96. {% if kibana_proxy_cpu_limit is not none and kibana_proxy_cpu_limit != "" %}
  97. cpu: "{{ kibana_proxy_cpu_limit }}"
  98. {% endif %}
  99. {% if kibana_proxy_memory_limit is not none and kibana_proxy_memory_limit != "" %}
  100. memory: "{{ kibana_proxy_memory_limit }}"
  101. {% endif %}
  102. {% endif %}
  103. {% if (kibana_proxy_memory_limit is defined and kibana_proxy_memory_limit is not none and kibana_proxy_memory_limit != "") or (kibana_proxy_cpu_request is defined and kibana_proxy_cpu_request is not none and kibana_proxy_cpu_request != "") %}
  104. requests:
  105. {% if kibana_proxy_cpu_request is not none and kibana_proxy_cpu_request != "" %}
  106. cpu: "{{ kibana_proxy_cpu_request }}"
  107. {% endif %}
  108. {% if kibana_proxy_memory_limit is not none and kibana_proxy_memory_limit != "" %}
  109. memory: "{{ kibana_proxy_memory_limit }}"
  110. {% endif %}
  111. {% endif %}
  112. {% endif %}
  113. ports:
  114. -
  115. name: "oaproxy"
  116. containerPort: 3000
  117. env:
  118. -
  119. name: "OAP_BACKEND_URL"
  120. value: "http://localhost:5601"
  121. -
  122. name: "OAP_AUTH_MODE"
  123. value: "oauth2"
  124. -
  125. name: "OAP_TRANSFORM"
  126. value: "user_header,token_header"
  127. -
  128. name: "OAP_OAUTH_ID"
  129. value: kibana-proxy
  130. -
  131. name: "OAP_MASTER_URL"
  132. value: {{ openshift_logging_kibana_master_url }}
  133. -
  134. name: "OAP_PUBLIC_MASTER_URL"
  135. value: {{ openshift_logging_kibana_master_public_url }}
  136. -
  137. name: "OAP_LOGOUT_REDIRECT"
  138. value: {{ openshift_logging_kibana_master_public_url }}/console/logout
  139. -
  140. name: "OAP_MASTER_CA_FILE"
  141. value: "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
  142. -
  143. name: "OAP_DEBUG"
  144. value: "{{ openshift_logging_kibana_proxy_debug }}"
  145. -
  146. name: "OAP_OAUTH_SECRET_FILE"
  147. value: "/secret/oauth-secret"
  148. -
  149. name: "OAP_SERVER_CERT_FILE"
  150. value: "/secret/server-cert"
  151. -
  152. name: "OAP_SERVER_KEY_FILE"
  153. value: "/secret/server-key"
  154. -
  155. name: "OAP_SERVER_TLS_FILE"
  156. value: "/secret/server-tls.json"
  157. -
  158. name: "OAP_SESSION_SECRET_FILE"
  159. value: "/secret/session-secret"
  160. -
  161. name: "OCP_AUTH_PROXY_MEMORY_LIMIT"
  162. valueFrom:
  163. resourceFieldRef:
  164. containerName: kibana-proxy
  165. resource: limits.memory
  166. volumeMounts:
  167. - name: kibana-proxy
  168. mountPath: /secret
  169. readOnly: true
  170. volumes:
  171. - name: kibana
  172. secret:
  173. secretName: logging-kibana
  174. - name: kibana-proxy
  175. secret:
  176. secretName: logging-kibana-proxy