main.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. and openshift_enable_origin_repo | default(true)
  35. - name: Configure origin yum repositories RHEL/CentOS
  36. copy:
  37. src: origin/repos/openshift-ansible-centos-paas-sig.repo
  38. dest: /etc/yum.repos.d/
  39. notify: refresh cache
  40. when: ansible_os_family == "RedHat" and ansible_distribution != "Fedora"
  41. and openshift_deployment_type == 'origin'
  42. and not openshift.common.is_containerized | bool
  43. and openshift_enable_origin_repo | default(true)