es.j2 6.3 KB

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