es.j2 6.4 KB

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