kibana.j2 7.3 KB

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