prometheus.j2 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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: prometheus
  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: 8443
  51. name: web
  52. args:
  53. - -provider=openshift
  54. - -https-address=:8443
  55. - -http-address=
  56. - -email-domain=*
  57. - -upstream=http://localhost:9090
  58. - -client-id=system:serviceaccount:{{ namespace }}:prometheus
  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
  71. - mountPath: /etc/proxy/secrets
  72. name: prometheus-secrets
  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 alertmanager behind prometheus-alert-buffer behind an oauth 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: 9443
  125. name: web
  126. args:
  127. - -provider=openshift
  128. - -https-address=:9443
  129. - -http-address=
  130. - -email-domain=*
  131. - -upstream=http://localhost:9099
  132. - -client-id=system:serviceaccount:{{ namespace }}:prometheus
  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
  144. - mountPath: /etc/proxy/secrets
  145. name: alerts-secrets
  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: alert-buffer-data
  169. ports:
  170. - containerPort: 9099
  171. name: alert-buf
  172. - name: alertmanager
  173. args:
  174. - -config.file=/etc/alertmanager/alertmanager.yml
  175. image: "{{ l_openshift_prometheus_alertmanager_image_prefix }}prometheus-alertmanager:{{ l_openshift_prometheus_alertmanager_image_version }}"
  176. imagePullPolicy: IfNotPresent
  177. resources:
  178. requests:
  179. {% if openshift_prometheus_alertmanager_memory_requests is defined and openshift_prometheus_alertmanager_memory_requests is not none %}
  180. memory: "{{ openshift_prometheus_alertmanager_memory_requests }}"
  181. {% endif %}
  182. {% if openshift_prometheus_alertmanager_cpu_requests is defined and openshift_prometheus_alertmanager_cpu_requests is not none %}
  183. cpu: "{{ openshift_prometheus_alertmanager_cpu_requests }}"
  184. {% endif %}
  185. limits:
  186. {% if openshift_prometheus_alertmanager_memory_limit is defined and openshift_prometheus_alertmanager_memory_limit is not none %}
  187. memory: "{{ openshift_prometheus_alertmanager_memory_limit }}"
  188. {% endif %}
  189. {% if openshift_prometheus_alertmanager_cpu_limit is defined and openshift_prometheus_alertmanager_cpu_limit is not none %}
  190. cpu: "{{ openshift_prometheus_alertmanager_cpu_limit }}"
  191. {% endif %}
  192. ports:
  193. - containerPort: 9093
  194. name: web
  195. volumeMounts:
  196. - mountPath: /etc/alertmanager
  197. name: alertmanager-config
  198. - mountPath: /alertmanager
  199. name: alertmanager-data
  200. restartPolicy: Always
  201. volumes:
  202. - name: prometheus-config
  203. configMap:
  204. defaultMode: 420
  205. name: prometheus
  206. - name: prometheus-secrets
  207. secret:
  208. secretName: prometheus-proxy
  209. - name: prometheus-tls
  210. secret:
  211. secretName: prometheus-tls
  212. - name: prometheus-data
  213. {% if openshift_prometheus_storage_type == 'pvc' %}
  214. persistentVolumeClaim:
  215. claimName: {{ openshift_prometheus_pvc_name }}
  216. {% else %}
  217. emptydir: {}
  218. {% endif %}
  219. - name: alertmanager-config
  220. configMap:
  221. defaultMode: 420
  222. name: prometheus-alerts
  223. - name: alerts-secrets
  224. secret:
  225. secretName: alerts-proxy
  226. - name: alerts-tls
  227. secret:
  228. secretName: prometheus-alerts-tls
  229. - name: alertmanager-data
  230. {% if openshift_prometheus_alertmanager_storage_type == 'pvc' %}
  231. persistentVolumeClaim:
  232. claimName: {{ openshift_prometheus_alertmanager_pvc_name }}
  233. {% else %}
  234. emptydir: {}
  235. {% endif %}
  236. - name: alert-buffer-data
  237. {% if openshift_prometheus_alertbuffer_storage_type == 'pvc' %}
  238. persistentVolumeClaim:
  239. claimName: {{ openshift_prometheus_alertbuffer_pvc_name }}
  240. {% else %}
  241. emptydir: {}
  242. {% endif %}