main.yaml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ---
  2. - name: openshift_repos detect ostree
  3. stat:
  4. path: /run/ostree-booted
  5. register: ostree_booted
  6. - when: not ostree_booted.stat.exists
  7. block:
  8. - name: Ensure libselinux-python is installed
  9. package: name=libselinux-python state=present
  10. - name: Create any additional repos that are defined
  11. template:
  12. src: yum_repo.j2
  13. dest: /etc/yum.repos.d/openshift_additional.repo
  14. when:
  15. - openshift_additional_repos | length > 0
  16. notify: refresh cache
  17. - name: Remove the additional repos if no longer defined
  18. file:
  19. dest: /etc/yum.repos.d/openshift_additional.repo
  20. state: absent
  21. when:
  22. - openshift_additional_repos | length == 0
  23. notify: refresh cache
  24. # Singleton block
  25. - when: r_openshift_repos_has_run is not defined
  26. block:
  27. # Note: OpenShift repositories under CentOS may be shipped through the
  28. # "centos-release-openshift-origin" package which configures the repository.
  29. # This task matches the file names provided by the package so that they are
  30. # not installed twice in different files and remains idempotent.
  31. - name: Configure origin repositories and gpg keys if needed
  32. copy:
  33. src: "{{ item.src }}"
  34. dest: "{{ item.dest }}"
  35. with_items:
  36. - src: origin/gpg_keys/openshift-ansible-CentOS-SIG-PaaS
  37. dest: /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-PaaS
  38. - src: origin/repos/openshift-ansible-centos-paas-sig.repo
  39. dest: /etc/yum.repos.d/CentOS-OpenShift-Origin.repo
  40. notify: refresh cache
  41. when:
  42. - ansible_os_family == "RedHat"
  43. - ansible_distribution != "Fedora"
  44. - openshift_deployment_type == 'origin'
  45. - openshift_enable_origin_repo | default(true) | bool
  46. - name: Enable centos-openshift-origin-testing repository
  47. command: yum-config-manager --enable centos-openshift-origin-testing
  48. when: openshift_repos_enable_testing | bool
  49. - name: Ensure clean repo cache in the event repos have been changed manually
  50. debug:
  51. msg: "First run of openshift_repos"
  52. changed_when: true
  53. notify: refresh cache
  54. - name: Record that openshift_repos already ran
  55. set_fact:
  56. r_openshift_repos_has_run: True
  57. # Force running ALL handlers now, because we expect repo cache to be cleared
  58. # if changes have been made.
  59. - meta: flush_handlers