main.yaml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---
  2. # TODO: Add flag for enabling EPEL repo, default to false
  3. # TODO: Add subscription-management config, with parameters
  4. # for username, password, poolid(name), and official repos to
  5. # enable/disable. Might need to make a module that extends the
  6. # subscription management module to take a poolid and enable/disable the
  7. # proper repos correctly.
  8. - assert:
  9. that: openshift.common.deployment_type in known_openshift_deployment_types
  10. - name: Ensure libselinux-python is installed
  11. action: "{{ ansible_pkg_mgr }} name=libselinux-python state=present"
  12. when: not is_atomic
  13. - name: Create any additional repos that are defined
  14. template:
  15. src: yum_repo.j2
  16. dest: /etc/yum.repos.d/openshift_additional.repo
  17. when: openshift_additional_repos | length > 0 and not is_atomic
  18. notify: refresh cache
  19. - name: Remove the additional repos if no longer defined
  20. file:
  21. dest: /etc/yum.repos.d/openshift_additional.repo
  22. state: absent
  23. when: openshift_additional_repos | length == 0 and not is_atomic
  24. notify: refresh cache
  25. - name: Remove any yum repo files for other deployment types RHEL/CentOS
  26. file:
  27. path: "/etc/yum.repos.d/{{ item | basename }}"
  28. state: absent
  29. with_fileglob:
  30. - '*/repos/*'
  31. when: not (item | search("/files/" ~ openshift_deployment_type ~ "/repos")) and
  32. (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  33. and not is_atomic
  34. notify: refresh cache
  35. - name: Remove any yum repo files for other deployment types Fedora
  36. file:
  37. path: "/etc/yum.repos.d/{{ item | basename }}"
  38. state: absent
  39. with_fileglob:
  40. - '*/repos/*'
  41. when: not (item | search("/files/fedora-" ~ openshift_deployment_type ~ "/repos")) and
  42. (ansible_distribution == "Fedora")
  43. and not is_atomic
  44. notify: refresh cache
  45. - name: Configure gpg keys if needed
  46. copy: src={{ item }} dest=/etc/pki/rpm-gpg/
  47. with_fileglob:
  48. - "{{ openshift_deployment_type }}/gpg_keys/*"
  49. notify: refresh cache
  50. - name: Configure yum repositories RHEL/CentOS
  51. copy: src={{ item }} dest=/etc/yum.repos.d/
  52. with_fileglob:
  53. - "{{ openshift_deployment_type }}/repos/*"
  54. notify: refresh cache
  55. when: (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  56. and not is_atomic
  57. - name: Configure yum repositories Fedora
  58. copy: src={{ item }} dest=/etc/yum.repos.d/
  59. with_fileglob:
  60. - "fedora-{{ openshift_deployment_type }}/repos/*"
  61. notify: refresh cache
  62. when: (ansible_distribution == "Fedora") and not is_atomic