main.yaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. - local_action: shell python -c 'import passlib' 2>/dev/null || echo not installed
  3. register: passlib_result
  4. become: false
  5. - name: Check that python-passlib is available on the control host
  6. assert:
  7. that:
  8. - "'not installed' not in passlib_result.stdout"
  9. msg: "python-passlib rpm must be installed on control host"
  10. - name: Create temp directory for doing work in on target
  11. command: mktemp -td openshift-metrics-ansible-XXXXXX
  12. register: mktemp
  13. changed_when: False
  14. - name: Create temp directory for all our templates
  15. file: path={{mktemp.stdout}}/templates state=directory mode=0755
  16. changed_when: False
  17. when: openshift_metrics_install_metrics | bool
  18. - name: Create temp directory local on control node
  19. local_action: command mktemp -d
  20. register: local_tmp
  21. changed_when: False
  22. become: false
  23. - name: Copy the admin client config(s)
  24. command: >
  25. cp {{ openshift.common.config_base}}/master/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  26. changed_when: False
  27. check_mode: no
  28. tags: metrics_init
  29. - include_tasks: install_metrics.yaml
  30. when:
  31. - openshift_metrics_install_metrics | bool
  32. - include_tasks: uninstall_metrics.yaml
  33. when:
  34. - not openshift_metrics_install_metrics | bool
  35. - include_tasks: uninstall_hosa.yaml
  36. when: not openshift_metrics_install_hawkular_agent | bool
  37. - name: Delete temp directory
  38. local_action: file path=local_tmp.stdout state=absent
  39. tags: metrics_cleanup
  40. changed_when: False
  41. check_mode: no
  42. become: false