es.j2 6.5 KB

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