main.yaml 2.8 KB

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