install.yaml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. ---
  2. - name: Create temp directory for doing work in on target
  3. command: mktemp -td openshift-cluster-monitoring-ansible-XXXXXX
  4. register: mktemp
  5. changed_when: False
  6. - name: Copy files to temp directory
  7. copy:
  8. src: "{{ item }}"
  9. dest: "{{ mktemp.stdout }}/{{ item }}"
  10. with_items:
  11. - cluster-monitoring-operator.yaml
  12. - name: Copy admin client config
  13. command: >
  14. cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  15. changed_when: false
  16. - name: Add monitoring project
  17. oc_project:
  18. state: present
  19. name: openshift-monitoring
  20. description: Openshift Monitoring
  21. node_selector: ""
  22. - name: Label monitoring namespace
  23. oc_label:
  24. state: present
  25. kind: namespace
  26. name: openshift-monitoring
  27. labels:
  28. - key: openshift.io/cluster-monitoring
  29. value: "true"
  30. - when: os_sdn_network_plugin_name == 'redhat/openshift-ovs-multitenant'
  31. block:
  32. - name: Waiting for netnamespace openshift-monitoring to be ready
  33. oc_obj:
  34. kind: netnamespace
  35. name: openshift-monitoring
  36. state: list
  37. register: get_output
  38. until: not get_output.results.stderr is defined
  39. retries: 30
  40. delay: 1
  41. changed_when: false
  42. - name: Make openshift-monitoring project network global
  43. command: >
  44. {{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig adm pod-network make-projects-global openshift-monitoring
  45. - name: Apply the cluster monitoring operator template
  46. shell: >
  47. {{ openshift_client_binary }} process -n openshift-monitoring -f "{{ mktemp.stdout }}/{{ item }}"
  48. --param OPERATOR_IMAGE="{{ openshift_cluster_monitoring_operator_image }}"
  49. --param PROMETHEUS_OPERATOR_IMAGE="{{ openshift_cluster_monitoring_operator_prometheus_operator_repo }}"
  50. --param ALERTMANAGER_IMAGE="{{ openshift_cluster_monitoring_operator_alertmanager_repo }}"
  51. --param PROMETHEUS_IMAGE="{{ openshift_cluster_monitoring_operator_prometheus_repo }}"
  52. --param PROMETHEUS_CONFIG_RELOADER_IMAGE="{{ openshift_cluster_monitoring_operator_prometheus_reloader_repo }}"
  53. --param CONFIG_RELOADER_IMAGE="{{ openshift_cluster_monitoring_operator_configmap_reloader_repo }}"
  54. --param ALERTMANAGER_CONFIG="{{ openshift_cluster_monitoring_operator_alertmanager_config | b64encode }}"
  55. --param CLUSTER_ID="{{ openshift_cluster_monitoring_operator_cluster_id }}"
  56. --param PROMETHEUS_STORAGE_CAPACITY="{{ openshift_cluster_monitoring_operator_prometheus_storage_capacity }}"
  57. --param ALERTMANAGER_STORAGE_CAPACITY="{{ openshift_cluster_monitoring_operator_alertmanager_storage_capacity }}"
  58. --config={{ mktemp.stdout }}/admin.kubeconfig
  59. | {{ openshift_client_binary }} apply --config={{ mktemp.stdout }}/admin.kubeconfig -f -
  60. with_items:
  61. - cluster-monitoring-operator.yaml
  62. - name: Wait for the ServiceMonitor CRD to be created
  63. command: "{{ openshift_client_binary }} get crd servicemonitors.monitoring.coreos.com -n openshift-monitoring --config={{ mktemp.stdout }}/admin.kubeconfig"
  64. register: crd
  65. until: crd.rc == 0
  66. delay: 30
  67. retries: 30
  68. - name: Delete temp directory
  69. file:
  70. name: "{{ mktemp.stdout }}"
  71. state: absent
  72. changed_when: False