static_shim.yml 480 B

12345678910111213141516171819
  1. ---
  2. # TODO: package this?
  3. - name: Copy static master scripts
  4. copy:
  5. src: "{{ item }}"
  6. dest: "/usr/local/bin/"
  7. mode: 0500
  8. with_items:
  9. - "scripts/{{ l_runtime }}/master-exec"
  10. - "scripts/{{ l_runtime }}/master-logs"
  11. - "scripts/{{ l_runtime }}/master-restart"
  12. vars:
  13. l_runtime: "{{ 'crio' if (openshift_use_crio | bool) else 'docker' }}"
  14. - name: Ensure cri-tools installed
  15. package:
  16. name: cri-tools
  17. state: present
  18. when: openshift_use_crio | bool