es.j2 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. terminationGracePeriod: 600
  31. serviceAccountName: aggregated-logging-elasticsearch
  32. securityContext:
  33. supplementalGroups:
  34. {% for group in es_storage_groups %}
  35. - {{group}}
  36. {% endfor %}
  37. {% if es_node_selector is iterable and es_node_selector | length > 0 %}
  38. nodeSelector:
  39. {% for key, value in es_node_selector.items() %}
  40. {{key}}: "{{value}}"
  41. {% endfor %}
  42. {% endif %}
  43. containers:
  44. - name: proxy
  45. image: {{ proxy_image }}
  46. imagePullPolicy: IfNotPresent
  47. args:
  48. - --upstream-ca=/etc/elasticsearch/secret/admin-ca
  49. - --https-address=:4443
  50. - -provider=openshift
  51. - -client-id={{openshift_logging_elasticsearch_prometheus_sa}}
  52. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  53. - -cookie-secret={{ 16 | oo_random_word | b64encode }}
  54. - -upstream=https://localhost:9200
  55. - '-openshift-sar={"namespace": "{{ openshift_logging_elasticsearch_namespace}}", "verb": "view", "resource": "prometheus", "group": "metrics.openshift.io"}'
  56. - '-openshift-delegate-urls={"/": {"resource": "prometheus", "verb": "view", "group": "metrics.openshift.io", "namespace": "{{ openshift_logging_elasticsearch_namespace}}"}}'
  57. - --tls-cert=/etc/tls/private/tls.crt
  58. - --tls-key=/etc/tls/private/tls.key
  59. - -pass-access-token
  60. - -pass-user-headers
  61. ports:
  62. - containerPort: 4443
  63. name: proxy
  64. protocol: TCP
  65. volumeMounts:
  66. - mountPath: /etc/tls/private
  67. name: proxy-tls
  68. readOnly: true
  69. - mountPath: /etc/elasticsearch/secret
  70. name: elasticsearch
  71. readOnly: true
  72. resources:
  73. limits:
  74. memory: "{{openshift_logging_elasticsearch_proxy_memory_limit }}"
  75. requests:
  76. cpu: "{{openshift_logging_elasticsearch_proxy_cpu_request }}"
  77. memory: "{{openshift_logging_elasticsearch_proxy_memory_limit }}"
  78. -
  79. name: "elasticsearch"
  80. image: {{image}}
  81. imagePullPolicy: IfNotPresent
  82. resources:
  83. limits:
  84. {% if es_cpu_limit is defined and es_cpu_limit is not none and es_cpu_limit != '' %}
  85. cpu: "{{es_cpu_limit}}"
  86. {% endif %}
  87. memory: "{{es_memory_limit}}"
  88. requests:
  89. cpu: "{{es_cpu_request}}"
  90. memory: "{{es_memory_limit}}"
  91. {% if es_container_security_context %}
  92. securityContext: {{ es_container_security_context | to_yaml }}
  93. {% endif %}
  94. ports:
  95. -
  96. containerPort: 9200
  97. name: "restapi"
  98. -
  99. containerPort: 9300
  100. name: "cluster"
  101. env:
  102. -
  103. name: "DC_NAME"
  104. value: "{{deploy_name}}"
  105. -
  106. name: "NAMESPACE"
  107. valueFrom:
  108. fieldRef:
  109. fieldPath: metadata.namespace
  110. -
  111. name: "KUBERNETES_TRUST_CERT"
  112. value: "true"
  113. -
  114. name: "SERVICE_DNS"
  115. value: "logging-{{es_cluster_name}}-cluster"
  116. -
  117. name: "CLUSTER_NAME"
  118. value: "logging-{{es_cluster_name}}"
  119. -
  120. name: "INSTANCE_RAM"
  121. value: "{{openshift_logging_elasticsearch_memory_limit}}"
  122. -
  123. name: "HEAP_DUMP_LOCATION"
  124. value: "/elasticsearch/persistent/heapdump.hprof"
  125. -
  126. name: "NODE_QUORUM"
  127. value: "{{es_node_quorum | int}}"
  128. -
  129. name: "RECOVER_EXPECTED_NODES"
  130. value: "{{es_recover_expected_nodes}}"
  131. -
  132. name: "RECOVER_AFTER_TIME"
  133. value: "{{openshift_logging_elasticsearch_recover_after_time}}"
  134. -
  135. name: "READINESS_PROBE_TIMEOUT"
  136. value: "30"
  137. -
  138. name: "POD_LABEL"
  139. value: "component={{component}}"
  140. -
  141. name: "IS_MASTER"
  142. value: "{% if deploy_type in ['data-master', 'master'] %}true{% else %}false{% endif %}"
  143. -
  144. name: "HAS_DATA"
  145. value: "{% if deploy_type in ['data-master', 'data-client'] %}true{% else %}false{% endif %}"
  146. -
  147. name: "PROMETHEUS_USER"
  148. value: "{{openshift_logging_elasticsearch_prometheus_sa}}"
  149. volumeMounts:
  150. - name: elasticsearch
  151. mountPath: /etc/elasticsearch/secret
  152. readOnly: true
  153. - name: elasticsearch-config
  154. mountPath: /usr/share/java/elasticsearch/config
  155. readOnly: true
  156. - name: elasticsearch-storage
  157. mountPath: /elasticsearch/persistent
  158. readinessProbe:
  159. exec:
  160. command:
  161. - "/usr/share/java/elasticsearch/probe/readiness.sh"
  162. initialDelaySeconds: 10
  163. timeoutSeconds: 30
  164. periodSeconds: 5
  165. volumes:
  166. - name: proxy-tls
  167. secret:
  168. secretName: prometheus-tls
  169. - name: elasticsearch
  170. secret:
  171. secretName: logging-elasticsearch
  172. - name: elasticsearch-config
  173. configMap:
  174. name: logging-elasticsearch
  175. - name: elasticsearch-storage
  176. {% if openshift_logging_elasticsearch_storage_type == 'pvc' %}
  177. persistentVolumeClaim:
  178. claimName: {{ openshift_logging_elasticsearch_pvc_name }}
  179. {% elif openshift_logging_elasticsearch_storage_type == 'hostmount' %}
  180. hostPath:
  181. path: {{ openshift_logging_elasticsearch_hostmount_path }}
  182. {% else %}
  183. emptydir: {}
  184. {% endif %}