main.yaml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. - "fedora-openshift-enterprise/repos/*"
  32. - "fedora-origin/repos/*"
  33. - "online/repos/*"
  34. - "openshift-enterprise/repos/*"
  35. - "origin/repos/*"
  36. - "removed/repos/*"
  37. when: not openshift.common.is_containerized | bool
  38. and not (item | search("/files/" ~ openshift_deployment_type ~ "/repos"))
  39. and (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  40. notify: refresh cache
  41. - name: Remove any yum repo files for other deployment types Fedora
  42. file:
  43. path: "{{ item | basename }}"
  44. state: absent
  45. with_fileglob:
  46. - "fedora-openshift-enterprise/repos/*"
  47. - "fedora-origin/repos/*"
  48. - "online/repos/*"
  49. - "openshift-enterprise/repos/*"
  50. - "origin/repos/*"
  51. - "removed/repos/*"
  52. when: not openshift.common.is_containerized | bool
  53. and not (item | search("/files/fedora-" ~ openshift_deployment_type ~ "/repos"))
  54. and (ansible_distribution == "Fedora")
  55. notify: refresh cache
  56. - name: Configure gpg keys if needed
  57. copy:
  58. src: "{{ item }}"
  59. dest: /etc/pki/rpm-gpg/
  60. with_fileglob:
  61. - "{{ openshift_deployment_type }}/gpg_keys/*"
  62. notify: refresh cache
  63. when: not openshift.common.is_containerized | bool
  64. - name: Configure yum repositories RHEL/CentOS
  65. copy:
  66. src: "{{ item }}"
  67. dest: /etc/yum.repos.d/
  68. with_fileglob:
  69. - "{{ openshift_deployment_type }}/repos/*"
  70. notify: refresh cache
  71. when: (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
  72. and not openshift.common.is_containerized | bool
  73. - name: Configure yum repositories Fedora
  74. copy:
  75. src: "{{ item }}"
  76. dest: /etc/yum.repos.d/
  77. with_fileglob:
  78. - "fedora-{{ openshift_deployment_type }}/repos/*"
  79. notify: refresh cache
  80. when: (ansible_distribution == "Fedora") and not openshift.common.is_containerized | bool