main.yaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. - name: Ensure libselinux-python is installed
  11. yum:
  12. pkg: libselinux-python
  13. state: present
  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
  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
  24. - name: Remove any yum repo files for other deployment types
  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"))
  31. - name: Configure gpg keys if needed
  32. copy: src={{ item }} dest=/etc/pki/rpm-gpg/
  33. with_fileglob:
  34. - "{{ openshift_deployment_type }}/gpg_keys/*"
  35. - name: Configure yum repositories
  36. copy: src={{ item }} dest=/etc/yum.repos.d/
  37. with_fileglob:
  38. - "{{ openshift_deployment_type }}/repos/*"