main.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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: Configure origin gpg keys if needed
  27. copy:
  28. src: origin/gpg_keys/openshift-ansible-CentOS-SIG-PaaS
  29. dest: /etc/pki/rpm-gpg/
  30. notify: refresh cache
  31. when: ansible_os_family == "RedHat" and ansible_distribution != "Fedora"
  32. and openshift_deployment_type == 'origin'
  33. and not openshift.common.is_containerized | bool
  34. - name: Configure origin yum repositories RHEL/CentOS
  35. copy:
  36. src: origin/repos/openshift-ansible-centos-paas-sig.repo
  37. dest: /etc/yum.repos.d/
  38. notify: refresh cache
  39. when: ansible_os_family == "RedHat" and ansible_distribution != "Fedora"
  40. and openshift_deployment_type == 'origin'
  41. and not openshift.common.is_containerized | bool