main.yaml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. - name: Create any additional repos that are defined
  13. template:
  14. src: yum_repo.j2
  15. dest: /etc/yum.repos.d/openshift_additional.repo
  16. when: openshift_additional_repos | length > 0
  17. notify: refresh cache
  18. - name: Remove the additional repos if no longer defined
  19. file:
  20. dest: /etc/yum.repos.d/openshift_additional.repo
  21. state: absent
  22. when: openshift_additional_repos | length == 0
  23. notify: refresh cache
  24. - name: Remove any yum repo files for other deployment types RHEL/CentOS
  25. file:
  26. path: "/etc/yum.repos.d/{{ item | basename }}"
  27. state: absent
  28. with_fileglob:
  29. - '*/repos/*'
  30. when: not (item | search("/files/" ~ openshift_deployment_type ~ "/repos")) and
  31. (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  32. notify: refresh cache
  33. - name: Remove any yum repo files for other deployment types Fedora
  34. file:
  35. path: "/etc/yum.repos.d/{{ item | basename }}"
  36. state: absent
  37. with_fileglob:
  38. - '*/repos/*'
  39. when: not (item | search("/files/fedora-" ~ openshift_deployment_type ~ "/repos")) and
  40. (ansible_distribution == "Fedora")
  41. notify: refresh cache
  42. - name: Configure gpg keys if needed
  43. copy: src={{ item }} dest=/etc/pki/rpm-gpg/
  44. with_fileglob:
  45. - "{{ openshift_deployment_type }}/gpg_keys/*"
  46. notify: refresh cache
  47. - name: Configure yum repositories RHEL/CentOS
  48. copy: src={{ item }} dest=/etc/yum.repos.d/
  49. with_fileglob:
  50. - "{{ openshift_deployment_type }}/repos/*"
  51. notify: refresh cache
  52. when: (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  53. - name: Configure yum repositories Fedora
  54. copy: src={{ item }} dest=/etc/yum.repos.d/
  55. with_fileglob:
  56. - "fedora-{{ openshift_deployment_type }}/repos/*"
  57. notify: refresh cache
  58. when: (ansible_distribution == "Fedora")