prometheus.j2 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. apiVersion: apps/v1beta1
  2. kind: StatefulSet
  3. metadata:
  4. name: prometheus
  5. namespace: {{ namespace }}
  6. labels:
  7. app: prometheus
  8. spec:
  9. updateStrategy:
  10. type: RollingUpdate
  11. podManagementPolicy: Parallel
  12. selector:
  13. provider: openshift
  14. matchLabels:
  15. app: prometheus
  16. template:
  17. metadata:
  18. name: prometheus
  19. labels:
  20. app: prometheus
  21. spec:
  22. serviceAccountName: "{{ openshift_prometheus_service_name }}"
  23. {% if openshift_prometheus_node_selector is iterable and openshift_prometheus_node_selector | length > 0 %}
  24. nodeSelector:
  25. {% for key, value in openshift_prometheus_node_selector.items() %}
  26. {{ key }}: "{{ value }}"
  27. {% endfor %}
  28. {% endif %}
  29. containers:
  30. # Deploy Prometheus behind an oauth proxy
  31. - name: prom-proxy
  32. image: "{{ openshift_prometheus_proxy_image }}"
  33. imagePullPolicy: IfNotPresent
  34. resources:
  35. requests:
  36. {% if openshift_prometheus_oauth_proxy_memory_requests is defined and openshift_prometheus_oauth_proxy_memory_requests is not none %}
  37. memory: "{{ openshift_prometheus_oauth_proxy_memory_requests }}"
  38. {% endif %}
  39. {% if openshift_prometheus_oauth_proxy_cpu_requests is defined and openshift_prometheus_oauth_proxy_cpu_requests is not none %}
  40. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_requests }}"
  41. {% endif %}
  42. limits:
  43. {% if openshift_prometheus_oauth_proxy_memory_limit is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %}
  44. memory: "{{ openshift_prometheus_oauth_proxy_memory_limit }}"
  45. {% endif %}
  46. {% if openshift_prometheus_oauth_proxy_cpu_limit is defined and openshift_prometheus_oauth_proxy_cpu_limit is not none %}
  47. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_limit }}"
  48. {% endif %}
  49. ports:
  50. - containerPort: {{ openshift_prometheus_service_targetport }}
  51. name: web
  52. args:
  53. - -provider=openshift
  54. - -https-address=:{{ openshift_prometheus_service_targetport }}
  55. - -http-address=
  56. - -email-domain=*
  57. - -upstream=http://localhost:9090
  58. - -client-id=system:serviceaccount:{{ namespace }}:{{ openshift_prometheus_service_name }}
  59. - '-openshift-sar={"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}'
  60. - '-openshift-delegate-urls={"/": {"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}}'
  61. - -tls-cert=/etc/tls/private/tls.crt
  62. - -tls-key=/etc/tls/private/tls.key
  63. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  64. - -cookie-secret-file=/etc/proxy/secrets/session_secret
  65. - -openshift-ca=/etc/pki/tls/cert.pem
  66. - -openshift-ca=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  67. - -skip-auth-regex=^/metrics
  68. volumeMounts:
  69. - mountPath: /etc/tls/private
  70. name: prometheus-tls-secret
  71. - mountPath: /etc/proxy/secrets
  72. name: prometheus-proxy-secret
  73. - mountPath: /prometheus
  74. name: prometheus-data
  75. - name: prometheus
  76. args:
  77. {% for arg in openshift_prometheus_args %}
  78. - {{ arg }}
  79. {% endfor %}
  80. - --config.file=/etc/prometheus/prometheus.yml
  81. - --web.listen-address=localhost:9090
  82. image: "{{ openshift_prometheus_image }}"
  83. imagePullPolicy: IfNotPresent
  84. livenessProbe:
  85. exec:
  86. command:
  87. - /bin/bash
  88. - -c
  89. - |-
  90. set -euo pipefail;
  91. touch /tmp/prometheusconfig.hash;
  92. if [[ $(find /etc/prometheus -type f | sort | xargs md5sum | md5sum) != $(cat /tmp/prometheusconfig.hash) ]]; then
  93. find /etc/prometheus -type f | sort | xargs md5sum | md5sum > /tmp/prometheusconfig.hash;
  94. kill -HUP 1;
  95. fi
  96. initialDelaySeconds: 60
  97. periodSeconds: 60
  98. resources:
  99. requests:
  100. {% if openshift_prometheus_memory_requests is defined and openshift_prometheus_memory_requests is not none %}
  101. memory: "{{ openshift_prometheus_memory_requests }}"
  102. {% endif %}
  103. {% if openshift_prometheus_cpu_requests is defined and openshift_prometheus_cpu_requests is not none %}
  104. cpu: "{{ openshift_prometheus_cpu_requests }}"
  105. {% endif %}
  106. limits:
  107. {% if openshift_prometheus_memory_limit is defined and openshift_prometheus_memory_limit is not none %}
  108. memory: "{{ openshift_prometheus_memory_limit }}"
  109. {% endif %}
  110. {% if openshift_prometheus_cpu_limit is defined and openshift_prometheus_cpu_limit is not none %}
  111. cpu: "{{ openshift_prometheus_cpu_limit }}"
  112. {% endif %}
  113. volumeMounts:
  114. - mountPath: /etc/prometheus
  115. name: prometheus-config
  116. - mountPath: /prometheus
  117. name: prometheus-data
  118. # Deploy alert-buffer behind oauth alerts-proxy
  119. - name: alerts-proxy
  120. image: "{{ openshift_prometheus_proxy_image }}"
  121. imagePullPolicy: IfNotPresent
  122. resources:
  123. requests:
  124. {% if openshift_prometheus_oauth_proxy_memory_requests is defined and openshift_prometheus_oauth_proxy_memory_requests is not none %}
  125. memory: "{{ openshift_prometheus_oauth_proxy_memory_requests }}"
  126. {% endif %}
  127. {% if openshift_prometheus_oauth_proxy_cpu_requests is defined and openshift_prometheus_oauth_proxy_cpu_requests is not none %}
  128. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_requests }}"
  129. {% endif %}
  130. limits:
  131. {% if openshift_prometheus_oauth_proxy_memory_limit is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %}
  132. memory: "{{ openshift_prometheus_oauth_proxy_memory_limit }}"
  133. {% endif %}
  134. {% if openshift_prometheus_oauth_proxy_cpu_limit is defined and openshift_prometheus_oauth_proxy_cpu_limit is not none %}
  135. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_limit }}"
  136. {% endif %}
  137. ports:
  138. - containerPort: {{ openshift_prometheus_alerts_service_targetport }}
  139. name: web
  140. args:
  141. - -provider=openshift
  142. - -https-address=:{{ openshift_prometheus_alerts_service_targetport }}
  143. - -http-address=
  144. - -email-domain=*
  145. - -upstream=http://localhost:9099
  146. - -client-id=system:serviceaccount:{{ namespace }}:{{ openshift_prometheus_service_name }}
  147. - '-openshift-sar={"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}'
  148. - '-openshift-delegate-urls={"/": {"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}}'
  149. - -tls-cert=/etc/tls/private/tls.crt
  150. - -tls-key=/etc/tls/private/tls.key
  151. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  152. - -cookie-secret-file=/etc/proxy/secrets/session_secret
  153. - -openshift-ca=/etc/pki/tls/cert.pem
  154. - -openshift-ca=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  155. - -skip-auth-regex=^/metrics
  156. volumeMounts:
  157. - mountPath: /etc/tls/private
  158. name: alerts-tls-secret
  159. - mountPath: /etc/proxy/secrets
  160. name: alerts-proxy-secret
  161. - name: alert-buffer
  162. args:
  163. - --storage-path=/alert-buffer/messages.db
  164. image: "{{ openshift_prometheus_alertbuffer_image }}"
  165. imagePullPolicy: IfNotPresent
  166. resources:
  167. requests:
  168. {% if openshift_prometheus_alertbuffer_memory_requests is defined and openshift_prometheus_alertbuffer_memory_requests is not none %}
  169. memory: "{{ openshift_prometheus_alertbuffer_memory_requests }}"
  170. {% endif %}
  171. {% if openshift_prometheus_alertbuffer_cpu_requests is defined and openshift_prometheus_alertbuffer_cpu_requests is not none %}
  172. cpu: "{{ openshift_prometheus_alertbuffer_cpu_requests }}"
  173. {% endif %}
  174. limits:
  175. {% if openshift_prometheus_alertbuffer_memory_limit is defined and openshift_prometheus_alertbuffer_memory_limit is not none %}
  176. memory: "{{ openshift_prometheus_alertbuffer_memory_limit }}"
  177. {% endif %}
  178. {% if openshift_prometheus_alertbuffer_cpu_limit is defined and openshift_prometheus_alertbuffer_cpu_limit is not none %}
  179. cpu: "{{ openshift_prometheus_alertbuffer_cpu_limit }}"
  180. {% endif %}
  181. volumeMounts:
  182. - mountPath: /alert-buffer
  183. name: alerts-data
  184. # Deploy alertmanager behind oauth alertmanager-proxy
  185. - name: alertmanager-proxy
  186. image: "{{ openshift_prometheus_proxy_image }}"
  187. imagePullPolicy: IfNotPresent
  188. requests:
  189. {% if openshift_prometheus_oauth_proxy_memory_requests is defined and openshift_prometheus_oauth_proxy_memory_requests is not none %}
  190. memory: "{{ openshift_prometheus_oauth_proxy_memory_requests }}"
  191. {% endif %}
  192. {% if openshift_prometheus_oauth_proxy_cpu_requests is defined and openshift_prometheus_oauth_proxy_cpu_requests is not none %}
  193. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_requests }}"
  194. {% endif %}
  195. limits:
  196. {% if openshift_prometheus_oauth_proxy_memory_limit is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %}
  197. memory: "{{ openshift_prometheus_oauth_proxy_memory_limit }}"
  198. {% endif %}
  199. {% if openshift_prometheus_oauth_proxy_cpu_limit is defined and openshift_prometheus_oauth_proxy_cpu_limit is not none %}
  200. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_limit }}"
  201. {% endif %}
  202. ports:
  203. - containerPort: {{ openshift_prometheus_alertmanager_service_targetport }}
  204. name: web
  205. args:
  206. - -provider=openshift
  207. - -https-address=:{{ openshift_prometheus_alertmanager_service_targetport }}
  208. - -http-address=
  209. - -email-domain=*
  210. - -upstream=http://localhost:9093
  211. - -client-id=system:serviceaccount:{{ namespace }}:{{ openshift_prometheus_service_name }}
  212. - -openshift-ca=/etc/pki/tls/cert.pem
  213. - -openshift-ca=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  214. - '-openshift-sar={"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}'
  215. - '-openshift-delegate-urls={"/": {"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}}'
  216. - -tls-cert=/etc/tls/private/tls.crt
  217. - -tls-key=/etc/tls/private/tls.key
  218. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  219. - -cookie-secret-file=/etc/proxy/secrets/session_secret
  220. - -skip-auth-regex=^/metrics
  221. volumeMounts:
  222. - mountPath: /etc/tls/private
  223. name: alertmanager-tls-secret
  224. - mountPath: /etc/proxy/secrets
  225. name: alertmanager-proxy-secret
  226. - name: alertmanager
  227. args:
  228. - --config.file=/etc/alertmanager/alertmanager.yml
  229. image: "{{ openshift_prometheus_alertmanager_image }}"
  230. imagePullPolicy: IfNotPresent
  231. resources:
  232. requests:
  233. {% if openshift_prometheus_alertmanager_memory_requests is defined and openshift_prometheus_alertmanager_memory_requests is not none %}
  234. memory: "{{ openshift_prometheus_alertmanager_memory_requests }}"
  235. {% endif %}
  236. {% if openshift_prometheus_alertmanager_cpu_requests is defined and openshift_prometheus_alertmanager_cpu_requests is not none %}
  237. cpu: "{{ openshift_prometheus_alertmanager_cpu_requests }}"
  238. {% endif %}
  239. limits:
  240. {% if openshift_prometheus_alertmanager_memory_limit is defined and openshift_prometheus_alertmanager_memory_limit is not none %}
  241. memory: "{{ openshift_prometheus_alertmanager_memory_limit }}"
  242. {% endif %}
  243. {% if openshift_prometheus_alertmanager_cpu_limit is defined and openshift_prometheus_alertmanager_cpu_limit is not none %}
  244. cpu: "{{ openshift_prometheus_alertmanager_cpu_limit }}"
  245. {% endif %}
  246. volumeMounts:
  247. - mountPath: /etc/alertmanager
  248. name: alertmanager-config
  249. - mountPath: /alertmanager
  250. name: alertmanager-data
  251. restartPolicy: Always
  252. volumes:
  253. - name: prometheus-config
  254. configMap:
  255. defaultMode: 420
  256. name: prometheus
  257. - name: prometheus-proxy-secret
  258. secret:
  259. secretName: prometheus-proxy
  260. - name: prometheus-tls-secret
  261. secret:
  262. secretName: prometheus-tls
  263. - name: prometheus-data
  264. {% if openshift_prometheus_storage_type == 'pvc' %}
  265. persistentVolumeClaim:
  266. claimName: {{ openshift_prometheus_pvc_name }}
  267. {% else %}
  268. emptydir: {}
  269. {% endif %}
  270. - name: alertmanager-config
  271. configMap:
  272. defaultMode: 420
  273. name: alertmanager
  274. - name: alertmanager-proxy-secret
  275. secret:
  276. secretName: alertmanager-proxy
  277. - name: alertmanager-tls-secret
  278. secret:
  279. secretName: alertmanager-tls
  280. - name: alerts-tls-secret
  281. secret:
  282. secretName: alerts-tls
  283. - name: alerts-proxy-secret
  284. secret:
  285. secretName: alerts-proxy
  286. - name: alertmanager-data
  287. {% if openshift_prometheus_alertmanager_storage_type == 'pvc' %}
  288. persistentVolumeClaim:
  289. claimName: {{ openshift_prometheus_alertmanager_pvc_name }}
  290. {% else %}
  291. emptydir: {}
  292. {% endif %}
  293. - name: alerts-data
  294. {% if openshift_prometheus_alertbuffer_storage_type == 'pvc' %}
  295. persistentVolumeClaim:
  296. claimName: {{ openshift_prometheus_alertbuffer_pvc_name }}
  297. {% else %}
  298. emptydir: {}
  299. {% endif %}