main.yaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ---
  2. - fail:
  3. msg: Only one Fluentd nodeselector key pair should be provided
  4. when: openshift_logging_fluentd_nodeselector.keys() | count > 1
  5. - name: Set default image variables based on deployment_type
  6. include_vars: "{{ item }}"
  7. with_first_found:
  8. - "{{ openshift_deployment_type | default(deployment_type) }}.yml"
  9. - "default_images.yml"
  10. - name: Set logging image facts
  11. set_fact:
  12. openshift_logging_image_prefix: "{{ openshift_logging_image_prefix | default(__openshift_logging_image_prefix) }}"
  13. openshift_logging_image_version: "{{ openshift_logging_image_version | default(__openshift_logging_image_version) }}"
  14. - name: Create temp directory for doing work in
  15. command: mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  16. register: mktemp
  17. changed_when: False
  18. check_mode: no
  19. tags: logging_init
  20. - debug: msg="Created temp dir {{mktemp.stdout}}"
  21. - name: Create local temp directory for doing work in
  22. local_action: command mktemp -d /tmp/openshift-logging-ansible-XXXXXX
  23. register: local_tmp
  24. changed_when: False
  25. check_mode: no
  26. - debug: msg="Created local temp dir {{local_tmp.stdout}}"
  27. - name: Copy the admin client config(s)
  28. command: >
  29. cp {{ openshift_master_config_dir }}/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
  30. changed_when: False
  31. check_mode: no
  32. tags: logging_init
  33. - include: "{{ role_path }}/tasks/install_logging.yaml"
  34. when: openshift_logging_install_logging | default(false) | bool
  35. - include: "{{ role_path }}/tasks/upgrade_logging.yaml"
  36. when: openshift_logging_upgrade_logging | default(false) | bool
  37. - include: "{{ role_path }}/tasks/delete_logging.yaml"
  38. when:
  39. - not openshift_logging_install_logging | default(false) | bool
  40. - not openshift_logging_upgrade_logging | default(false) | bool
  41. - name: Delete temp directory
  42. file:
  43. name: "{{ mktemp.stdout }}"
  44. state: absent
  45. tags: logging_cleanup
  46. changed_when: False
  47. check_mode: no
  48. - name: Cleaning up local temp dir
  49. local_action: file path="{{local_tmp.stdout}}" state=absent
  50. tags: logging_cleanup
  51. changed_when: False