es.j2 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. apiVersion: "v1"
  2. kind: "DeploymentConfig"
  3. metadata:
  4. name: "{{deploy_name}}"
  5. labels:
  6. provider: openshift
  7. component: "{{component}}"
  8. deployment: "{{deploy_name}}"
  9. logging-infra: "{{logging_component}}"
  10. spec:
  11. replicas: {{es_replicas|default(1)}}
  12. revisionHistoryLimit: 0
  13. selector:
  14. provider: openshift
  15. component: "{{component}}"
  16. deployment: "{{deploy_name}}"
  17. logging-infra: "{{logging_component}}"
  18. strategy:
  19. type: Recreate
  20. triggers: []
  21. template:
  22. metadata:
  23. name: "{{deploy_name}}"
  24. labels:
  25. logging-infra: "{{logging_component}}"
  26. provider: openshift
  27. component: "{{component}}"
  28. deployment: "{{deploy_name}}"
  29. spec:
  30. affinity:
  31. podAntiAffinity:
  32. preferredDuringSchedulingIgnoredDuringExecution:
  33. - weight: 100
  34. podAffinityTerm:
  35. labelSelector:
  36. matchExpressions:
  37. - key: logging-infra
  38. operator: In
  39. values:
  40. - elasticsearch
  41. topologyKey: kubernetes.io/hostname
  42. terminationGracePeriod: 600
  43. serviceAccountName: aggregated-logging-elasticsearch
  44. securityContext:
  45. supplementalGroups:
  46. {% for group in es_storage_groups %}
  47. - {{group}}
  48. {% endfor %}
  49. {% if es_node_selector is iterable and es_node_selector | length > 0 %}
  50. nodeSelector:
  51. {% for key, value in es_node_selector.items() %}
  52. {{key}}: "{{value}}"
  53. {% endfor %}
  54. {% endif %}
  55. containers:
  56. - name: "elasticsearch"
  57. image: "{{ openshift_logging_elasticsearch_image }}"
  58. imagePullPolicy: IfNotPresent
  59. resources:
  60. limits:
  61. {% if es_cpu_limit is defined and es_cpu_limit is not none and es_cpu_limit != '' %}
  62. cpu: "{{es_cpu_limit}}"
  63. {% endif %}
  64. memory: "{{es_memory_limit}}"
  65. requests:
  66. cpu: "{{es_cpu_request}}"
  67. memory: "{{es_memory_limit}}"
  68. {% if es_container_security_context %}
  69. securityContext: {{ es_container_security_context | to_yaml }}
  70. {% endif %}
  71. ports:
  72. -
  73. containerPort: 9200
  74. name: "restapi"
  75. -
  76. containerPort: 9300
  77. name: "cluster"
  78. env:
  79. -
  80. name: "DC_NAME"
  81. value: "{{deploy_name}}"
  82. -
  83. name: "NAMESPACE"
  84. valueFrom:
  85. fieldRef:
  86. fieldPath: metadata.namespace
  87. -
  88. name: "KUBERNETES_TRUST_CERT"
  89. value: "true"
  90. -
  91. name: "SERVICE_DNS"
  92. value: "logging-{{es_cluster_name}}-cluster"
  93. -
  94. name: "CLUSTER_NAME"
  95. value: "logging-{{es_cluster_name}}"
  96. -
  97. name: "INSTANCE_RAM"
  98. value: "{{openshift_logging_elasticsearch_memory_limit}}"
  99. -
  100. name: "HEAP_DUMP_LOCATION"
  101. value: "/elasticsearch/persistent/heapdump.hprof"
  102. -
  103. name: "NODE_QUORUM"
  104. value: "{{es_node_quorum | int}}"
  105. -
  106. name: "RECOVER_EXPECTED_NODES"
  107. value: "{{es_recover_expected_nodes}}"
  108. -
  109. name: "RECOVER_AFTER_TIME"
  110. value: "{{openshift_logging_elasticsearch_recover_after_time}}"
  111. -
  112. name: "READINESS_PROBE_TIMEOUT"
  113. value: "30"
  114. -
  115. name: "POD_LABEL"
  116. value: "component={{component}}"
  117. -
  118. name: "IS_MASTER"
  119. value: "{% if deploy_type in ['data-master', 'master'] %}true{% else %}false{% endif %}"
  120. -
  121. name: "HAS_DATA"
  122. value: "{% if deploy_type in ['data-master', 'data-client'] %}true{% else %}false{% endif %}"
  123. -
  124. name: "PROMETHEUS_USER"
  125. value: "{{openshift_logging_elasticsearch_prometheus_sa}}"
  126. -
  127. name: "PRIMARY_SHARDS"
  128. value: "{{ es_number_of_shards | default ('1') }}"
  129. -
  130. name: "REPLICA_SHARDS"
  131. value: "{{ es_number_of_replicas | default ('0') }}"
  132. volumeMounts:
  133. - name: elasticsearch
  134. mountPath: /etc/elasticsearch/secret
  135. readOnly: true
  136. - name: elasticsearch-config
  137. mountPath: /usr/share/java/elasticsearch/config
  138. readOnly: true
  139. - name: elasticsearch-storage
  140. mountPath: /elasticsearch/persistent
  141. readinessProbe:
  142. exec:
  143. command:
  144. - "/usr/share/elasticsearch/probe/readiness.sh"
  145. initialDelaySeconds: 10
  146. timeoutSeconds: 30
  147. periodSeconds: 5
  148. -
  149. name: proxy
  150. image: "{{ openshift_logging_elasticsearch_proxy_image }}"
  151. imagePullPolicy: IfNotPresent
  152. args:
  153. - --upstream-ca=/etc/elasticsearch/secret/admin-ca
  154. - --https-address=:4443
  155. - -provider=openshift
  156. - -client-id=system:serviceaccount:{{ openshift_logging_elasticsearch_namespace }}:aggregated-logging-elasticsearch
  157. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  158. - -cookie-secret={{ 16 | lib_utils_oo_random_word | b64encode }}
  159. - -basic-auth-password={{ basic_auth_passwd }}
  160. - -upstream=https://localhost:9200
  161. - '-openshift-sar={"namespace": "{{ openshift_logging_elasticsearch_namespace}}", "verb": "view", "resource": "prometheus", "group": "metrics.openshift.io"}'
  162. - '-openshift-delegate-urls={"/": {"resource": "prometheus", "verb": "view", "group": "metrics.openshift.io", "namespace": "{{ openshift_logging_elasticsearch_namespace}}"}}'
  163. - --tls-cert=/etc/tls/private/tls.crt
  164. - --tls-key=/etc/tls/private/tls.key
  165. - -pass-access-token
  166. - -pass-user-headers
  167. ports:
  168. - containerPort: 4443
  169. name: proxy
  170. protocol: TCP
  171. volumeMounts:
  172. - mountPath: /etc/tls/private
  173. name: proxy-tls
  174. readOnly: true
  175. - mountPath: /etc/elasticsearch/secret
  176. name: elasticsearch
  177. readOnly: true
  178. resources:
  179. limits:
  180. memory: "{{openshift_logging_elasticsearch_proxy_memory_limit }}"
  181. requests:
  182. cpu: "{{openshift_logging_elasticsearch_proxy_cpu_request }}"
  183. memory: "{{openshift_logging_elasticsearch_proxy_memory_limit }}"
  184. volumes:
  185. - name: proxy-tls
  186. secret:
  187. secretName: prometheus-tls
  188. - name: elasticsearch
  189. secret:
  190. secretName: logging-elasticsearch
  191. - name: elasticsearch-config
  192. configMap:
  193. name: logging-elasticsearch
  194. - name: elasticsearch-storage
  195. {% if openshift_logging_elasticsearch_storage_type == 'pvc' %}
  196. persistentVolumeClaim:
  197. claimName: {{ openshift_logging_elasticsearch_pvc_name }}
  198. {% elif openshift_logging_elasticsearch_storage_type == 'hostmount' %}
  199. hostPath:
  200. path: {{ openshift_logging_elasticsearch_hostmount_path }}
  201. {% else %}
  202. emptydir: {}
  203. {% endif %}