install_node_exporter.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. # set facts
  3. - include_tasks: facts.yaml
  4. # namespace
  5. - name: Add prometheus project
  6. oc_project:
  7. state: present
  8. name: "{{ openshift_prometheus_namespace }}"
  9. node_selector: ""
  10. description: Prometheus
  11. - name: Make temp directory for node exporter template
  12. command: mktemp -d /tmp/prometheus-ansible-XXXXXX
  13. register: mktemp
  14. changed_when: False
  15. - name: Copy admin client config
  16. command: >
  17. cp {{ openshift.common.config_base }}/master//admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  18. changed_when: false
  19. # create clusterrolebinding for prometheus-node-exporter serviceaccount
  20. - name: Set hostaccess SCC for prometheus-node-exporter
  21. oc_adm_policy_user:
  22. state: present
  23. namespace: "{{ openshift_prometheus_namespace }}"
  24. resource_kind: scc
  25. resource_name: hostaccess
  26. user: "system:serviceaccount:{{ openshift_prometheus_namespace }}:prometheus-node-exporter"
  27. - name: Copy node exporter templates to temp directory
  28. copy:
  29. src: "{{ item }}"
  30. dest: "{{ mktemp.stdout }}/{{ item }}"
  31. with_items:
  32. - "{{ __node_exporter_template_file }}"
  33. - name: Apply the node exporter template file
  34. shell: >
  35. {{ openshift_client_binary }} process -f "{{ mktemp.stdout }}/{{ __node_exporter_template_file }}"
  36. --param IMAGE="{{ openshift_prometheus_node_exporter_image }}"
  37. --param MEMORY_REQUESTS="{{ openshift_prometheus_node_exporter_memory_requests }}"
  38. --param CPU_REQUESTS="{{ openshift_prometheus_node_exporter_cpu_requests }}"
  39. --param MEMORY_LIMITS="{{ openshift_prometheus_node_exporter_memory_limit }}"
  40. --param CPU_LIMITS="{{ openshift_prometheus_node_exporter_cpu_limit }}"
  41. --config={{ mktemp.stdout }}/admin.kubeconfig
  42. -n "{{ openshift_prometheus_namespace }}"
  43. | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f - -n "{{ openshift_prometheus_namespace }}"
  44. - name: Remove temp directory
  45. file:
  46. state: absent
  47. name: "{{ mktemp.stdout }}"
  48. changed_when: False