main.yaml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 openshift.common.is_containerized | bool
  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 openshift.common.is_containerized | bool
  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 openshift.common.is_containerized | bool
  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 openshift.common.is_containerized | bool
  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 openshift.common.is_containerized | bool
  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. when: not openshift.common.is_containerized | bool
  51. - name: Configure yum repositories RHEL/CentOS
  52. copy: src={{ item }} dest=/etc/yum.repos.d/
  53. with_fileglob:
  54. - "{{ openshift_deployment_type }}/repos/*"
  55. notify: refresh cache
  56. when: (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  57. and not openshift.common.is_containerized | bool
  58. - name: Configure yum repositories Fedora
  59. copy: src={{ item }} dest=/etc/yum.repos.d/
  60. with_fileglob:
  61. - "fedora-{{ openshift_deployment_type }}/repos/*"
  62. notify: refresh cache
  63. when: (ansible_distribution == "Fedora") and not openshift.common.is_containerized | bool