main.yaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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: Set default image variables based on openshift_deployment_type
  11. include_vars: "{{ item }}"
  12. with_first_found:
  13. - "{{ openshift_deployment_type }}.yml"
  14. - "default_images.yml"
  15. - name: Set metrics image facts
  16. set_fact:
  17. openshift_metrics_image_prefix: "{{ openshift_metrics_image_prefix | default(__openshift_metrics_image_prefix) }}"
  18. openshift_metrics_image_version: "{{ openshift_metrics_image_version | default(__openshift_metrics_image_version) }}"
  19. - name: Create temp directory for doing work in on target
  20. command: mktemp -td openshift-metrics-ansible-XXXXXX
  21. register: mktemp
  22. changed_when: False
  23. - name: Create temp directory for all our templates
  24. file: path={{mktemp.stdout}}/templates state=directory mode=0755
  25. changed_when: False
  26. when: openshift_metrics_install_metrics | bool
  27. - name: Create temp directory local on control node
  28. local_action: command mktemp -d
  29. register: local_tmp
  30. changed_when: False
  31. become: false
  32. - name: Copy the admin client config(s)
  33. command: >
  34. cp {{ openshift.common.config_base}}/master/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  35. changed_when: False
  36. check_mode: no
  37. tags: metrics_init
  38. - include_tasks: install_metrics.yaml
  39. when:
  40. - openshift_metrics_install_metrics | bool
  41. - include_tasks: uninstall_metrics.yaml
  42. when:
  43. - not openshift_metrics_install_metrics | bool
  44. - include_tasks: uninstall_hosa.yaml
  45. when: not openshift_metrics_install_hawkular_agent | bool
  46. - name: Delete temp directory
  47. local_action: file path=local_tmp.stdout state=absent
  48. tags: metrics_cleanup
  49. changed_when: False
  50. check_mode: no
  51. become: false