main.yaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. - name: Set default image variables based on deployment_type
  3. include_vars: "{{ item }}"
  4. with_first_found:
  5. - "{{ openshift_deployment_type | default(deployment_type) }}.yml"
  6. - "default_images.yml"
  7. - name: Set metrics image facts
  8. set_fact:
  9. openshift_metrics_image_prefix: "{{ openshift_metrics_image_prefix | default(__openshift_metrics_image_prefix) }}"
  10. openshift_metrics_image_version: "{{ openshift_metrics_image_version | default(__openshift_metrics_image_version) }}"
  11. - name: Create temp directory for doing work in on target
  12. command: mktemp -td openshift-metrics-ansible-XXXXXX
  13. register: mktemp
  14. changed_when: False
  15. - name: Create temp directory for all our templates
  16. file: path={{mktemp.stdout}}/templates state=directory mode=0755
  17. changed_when: False
  18. when: openshift_metrics_install_metrics | bool
  19. - name: Create temp directory local on control node
  20. local_action: command mktemp -d
  21. register: local_tmp
  22. changed_when: 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: "{{ (openshift_metrics_install_metrics | bool) | ternary('install_metrics.yaml','uninstall_metrics.yaml') }}"
  30. - name: Delete temp directory
  31. local_action: file path=local_tmp.stdout state=absent
  32. tags: metrics_cleanup
  33. changed_when: False
  34. check_mode: no