centos_repos.yml 1.2 KB

12345678910111213141516171819202122232425
  1. ---
  2. # Note: OpenShift repositories under CentOS may be shipped through the
  3. # "centos-release-openshift-origin" package which configures the repository.
  4. # This task matches the file names provided by the package so that they are
  5. # not installed twice in different files and remains idempotent.
  6. - name: Configure origin gpg keys
  7. copy:
  8. src: "origin/gpg_keys/openshift-ansible-CentOS-SIG-PaaS"
  9. dest: "/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-PaaS"
  10. notify: refresh cache
  11. # openshift_release is formatted to a standard string in openshift_version role.
  12. # openshift_release is expected to be in format 'x.y.z...' here.
  13. # Here, we drop the '.' characters and try to match the correct repo template
  14. # for our corresponding openshift_release.
  15. - name: Configure correct origin release repository
  16. template:
  17. src: "{{ item }}"
  18. dest: "/etc/yum.repos.d/{{ (item | basename | splitext)[0] }}"
  19. with_first_found:
  20. - "CentOS-OpenShift-Origin{{ (openshift_release | default('')).split('.') | join('') }}.repo.j2"
  21. - "CentOS-OpenShift-Origin{{ ((openshift_release | default('')).split('.') | join(''))[0:2] }}.repo.j2"
  22. - "CentOS-OpenShift-Origin.repo.j2"
  23. notify: refresh cache