prometheus.j2 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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: "{{ l_openshift_prometheus_proxy_image_prefix }}oauth-proxy:{{ l_openshift_prometheus_proxy_image_version }}"
  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: "{{ l_openshift_prometheus_image_prefix }}prometheus:{{ l_openshift_prometheus_image_version }}"
  83. imagePullPolicy: IfNotPresent
  84. resources:
  85. requests:
  86. {% if openshift_prometheus_memory_requests is defined and openshift_prometheus_memory_requests is not none %}
  87. memory: "{{ openshift_prometheus_memory_requests }}"
  88. {% endif %}
  89. {% if openshift_prometheus_cpu_requests is defined and openshift_prometheus_cpu_requests is not none %}
  90. cpu: "{{ openshift_prometheus_cpu_requests }}"
  91. {% endif %}
  92. limits:
  93. {% if openshift_prometheus_memory_limit is defined and openshift_prometheus_memory_limit is not none %}
  94. memory: "{{ openshift_prometheus_memory_limit }}"
  95. {% endif %}
  96. {% if openshift_prometheus_cpu_limit is defined and openshift_prometheus_cpu_limit is not none %}
  97. cpu: "{{ openshift_prometheus_cpu_limit }}"
  98. {% endif %}
  99. volumeMounts:
  100. - mountPath: /etc/prometheus
  101. name: prometheus-config
  102. - mountPath: /prometheus
  103. name: prometheus-data
  104. # Deploy alert-buffer behind oauth alerts-proxy
  105. - name: alerts-proxy
  106. image: "{{ l_openshift_prometheus_proxy_image_prefix }}oauth-proxy:{{ l_openshift_prometheus_proxy_image_version }}"
  107. imagePullPolicy: IfNotPresent
  108. resources:
  109. requests:
  110. {% if openshift_prometheus_oauth_proxy_memory_requests is defined and openshift_prometheus_oauth_proxy_memory_requests is not none %}
  111. memory: "{{ openshift_prometheus_oauth_proxy_memory_requests }}"
  112. {% endif %}
  113. {% if openshift_prometheus_oauth_proxy_cpu_requests is defined and openshift_prometheus_oauth_proxy_cpu_requests is not none %}
  114. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_requests }}"
  115. {% endif %}
  116. limits:
  117. {% if openshift_prometheus_oauth_proxy_memory_limit is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %}
  118. memory: "{{ openshift_prometheus_oauth_proxy_memory_limit }}"
  119. {% endif %}
  120. {% if openshift_prometheus_oauth_proxy_cpu_limit is defined and openshift_prometheus_oauth_proxy_cpu_limit is not none %}
  121. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_limit }}"
  122. {% endif %}
  123. ports:
  124. - containerPort: {{ openshift_prometheus_alerts_service_targetport }}
  125. name: web
  126. args:
  127. - -provider=openshift
  128. - -https-address=:{{ openshift_prometheus_alerts_service_targetport }}
  129. - -http-address=
  130. - -email-domain=*
  131. - -upstream=http://localhost:9099
  132. - -client-id=system:serviceaccount:{{ namespace }}:{{ openshift_prometheus_service_name }}
  133. - '-openshift-sar={"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}'
  134. - '-openshift-delegate-urls={"/": {"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}}'
  135. - -tls-cert=/etc/tls/private/tls.crt
  136. - -tls-key=/etc/tls/private/tls.key
  137. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  138. - -cookie-secret-file=/etc/proxy/secrets/session_secret
  139. - -openshift-ca=/etc/pki/tls/cert.pem
  140. - -openshift-ca=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  141. volumeMounts:
  142. - mountPath: /etc/tls/private
  143. name: alerts-tls-secret
  144. - mountPath: /etc/proxy/secrets
  145. name: alerts-proxy-secret
  146. - name: alert-buffer
  147. args:
  148. - --storage-path=/alert-buffer/messages.db
  149. image: "{{ l_openshift_prometheus_alertbuffer_image_prefix }}prometheus-alert-buffer:{{ l_openshift_prometheus_alertbuffer_image_version }}"
  150. imagePullPolicy: IfNotPresent
  151. resources:
  152. requests:
  153. {% if openshift_prometheus_alertbuffer_memory_requests is defined and openshift_prometheus_alertbuffer_memory_requests is not none %}
  154. memory: "{{ openshift_prometheus_alertbuffer_memory_requests }}"
  155. {% endif %}
  156. {% if openshift_prometheus_alertbuffer_cpu_requests is defined and openshift_prometheus_alertbuffer_cpu_requests is not none %}
  157. cpu: "{{ openshift_prometheus_alertbuffer_cpu_requests }}"
  158. {% endif %}
  159. limits:
  160. {% if openshift_prometheus_alertbuffer_memory_limit is defined and openshift_prometheus_alertbuffer_memory_limit is not none %}
  161. memory: "{{ openshift_prometheus_alertbuffer_memory_limit }}"
  162. {% endif %}
  163. {% if openshift_prometheus_alertbuffer_cpu_limit is defined and openshift_prometheus_alertbuffer_cpu_limit is not none %}
  164. cpu: "{{ openshift_prometheus_alertbuffer_cpu_limit }}"
  165. {% endif %}
  166. volumeMounts:
  167. - mountPath: /alert-buffer
  168. name: alerts-data
  169. ports:
  170. - containerPort: 9099
  171. name: alert-buf
  172. # Deploy alertmanager behind oauth alertmanager-proxy
  173. - name: alertmanager-proxy
  174. image: "{{ l_openshift_prometheus_proxy_image_prefix }}oauth-proxy:{{ l_openshift_prometheus_proxy_image_version }}"
  175. imagePullPolicy: IfNotPresent
  176. requests:
  177. {% if openshift_prometheus_oauth_proxy_memory_requests is defined and openshift_prometheus_oauth_proxy_memory_requests is not none %}
  178. memory: "{{ openshift_prometheus_oauth_proxy_memory_requests }}"
  179. {% endif %}
  180. {% if openshift_prometheus_oauth_proxy_cpu_requests is defined and openshift_prometheus_oauth_proxy_cpu_requests is not none %}
  181. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_requests }}"
  182. {% endif %}
  183. limits:
  184. {% if openshift_prometheus_oauth_proxy_memory_limit is defined and openshift_prometheus_oauth_proxy_memory_limit is not none %}
  185. memory: "{{ openshift_prometheus_oauth_proxy_memory_limit }}"
  186. {% endif %}
  187. {% if openshift_prometheus_oauth_proxy_cpu_limit is defined and openshift_prometheus_oauth_proxy_cpu_limit is not none %}
  188. cpu: "{{ openshift_prometheus_oauth_proxy_cpu_limit }}"
  189. {% endif %}
  190. ports:
  191. - containerPort: {{ openshift_prometheus_alertmanager_service_targetport }}
  192. name: web
  193. args:
  194. - -provider=openshift
  195. - -https-address=:{{ openshift_prometheus_alertmanager_service_targetport }}
  196. - -http-address=
  197. - -email-domain=*
  198. - -upstream=http://localhost:9093
  199. - -client-id=system:serviceaccount:{{ namespace }}:{{ openshift_prometheus_service_name }}
  200. - -openshift-ca=/etc/pki/tls/cert.pem
  201. - -openshift-ca=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
  202. - '-openshift-sar={"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}'
  203. - '-openshift-delegate-urls={"/": {"resource": "namespaces", "verb": "get", "resourceName": "{{ namespace }}", "namespace": "{{ namespace }}"}}'
  204. - -tls-cert=/etc/tls/private/tls.crt
  205. - -tls-key=/etc/tls/private/tls.key
  206. - -client-secret-file=/var/run/secrets/kubernetes.io/serviceaccount/token
  207. - -cookie-secret-file=/etc/proxy/secrets/session_secret
  208. - -skip-auth-regex=^/metrics
  209. volumeMounts:
  210. - mountPath: /etc/tls/private
  211. name: alertmanager-tls-secret
  212. - mountPath: /etc/proxy/secrets
  213. name: alertmanager-proxy-secret
  214. - name: alertmanager
  215. args:
  216. - -config.file=/etc/alertmanager/alertmanager.yml
  217. image: "{{ l_openshift_prometheus_alertmanager_image_prefix }}prometheus-alertmanager:{{ l_openshift_prometheus_alertmanager_image_version }}"
  218. imagePullPolicy: IfNotPresent
  219. resources:
  220. requests:
  221. {% if openshift_prometheus_alertmanager_memory_requests is defined and openshift_prometheus_alertmanager_memory_requests is not none %}
  222. memory: "{{ openshift_prometheus_alertmanager_memory_requests }}"
  223. {% endif %}
  224. {% if openshift_prometheus_alertmanager_cpu_requests is defined and openshift_prometheus_alertmanager_cpu_requests is not none %}
  225. cpu: "{{ openshift_prometheus_alertmanager_cpu_requests }}"
  226. {% endif %}
  227. limits:
  228. {% if openshift_prometheus_alertmanager_memory_limit is defined and openshift_prometheus_alertmanager_memory_limit is not none %}
  229. memory: "{{ openshift_prometheus_alertmanager_memory_limit }}"
  230. {% endif %}
  231. {% if openshift_prometheus_alertmanager_cpu_limit is defined and openshift_prometheus_alertmanager_cpu_limit is not none %}
  232. cpu: "{{ openshift_prometheus_alertmanager_cpu_limit }}"
  233. {% endif %}
  234. ports:
  235. - containerPort: 9093
  236. name: web
  237. volumeMounts:
  238. - mountPath: /etc/alertmanager
  239. name: alertmanager-config
  240. - mountPath: /alertmanager
  241. name: alertmanager-data
  242. restartPolicy: Always
  243. volumes:
  244. - name: prometheus-config
  245. configMap:
  246. defaultMode: 420
  247. name: prometheus
  248. - name: prometheus-proxy-secret
  249. secret:
  250. secretName: prometheus-proxy
  251. - name: prometheus-tls-secret
  252. secret:
  253. secretName: prometheus-tls
  254. - name: prometheus-data
  255. {% if openshift_prometheus_storage_type == 'pvc' %}
  256. persistentVolumeClaim:
  257. claimName: {{ openshift_prometheus_pvc_name }}
  258. {% else %}
  259. emptydir: {}
  260. {% endif %}
  261. - name: alertmanager-config
  262. configMap:
  263. defaultMode: 420
  264. name: alertmanager
  265. - name: alertmanager-proxy-secret
  266. secret:
  267. secretName: alertmanager-proxy
  268. - name: alertmanager-tls-secret
  269. secret:
  270. secretName: alertmanager-tls
  271. - name: alerts-tls-secret
  272. secret:
  273. secretName: alerts-tls
  274. - name: alerts-proxy-secret
  275. secret:
  276. secretName: alerts-proxy
  277. - name: alertmanager-data
  278. {% if openshift_prometheus_alertmanager_storage_type == 'pvc' %}
  279. persistentVolumeClaim:
  280. claimName: {{ openshift_prometheus_alertmanager_pvc_name }}
  281. {% else %}
  282. emptydir: {}
  283. {% endif %}
  284. - name: alerts-data
  285. {% if openshift_prometheus_alertbuffer_storage_type == 'pvc' %}
  286. persistentVolumeClaim:
  287. claimName: {{ openshift_prometheus_alertbuffer_pvc_name }}
  288. {% else %}
  289. emptydir: {}
  290. {% endif %}