heketi_deploy_part1.yml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Copy initial heketi resource files
  3. copy:
  4. src: "{{ item }}"
  5. dest: "{{ mktemp.stdout }}/{{ item }}"
  6. with_items:
  7. - "deploy-heketi-template.yml"
  8. - name: Create deploy-heketi template
  9. oc_obj:
  10. namespace: "{{ glusterfs_namespace }}"
  11. kind: template
  12. name: "deploy-heketi"
  13. state: present
  14. files:
  15. - "{{ mktemp.stdout }}/deploy-heketi-template.yml"
  16. - name: Deploy deploy-heketi pod
  17. oc_process:
  18. namespace: "{{ glusterfs_namespace }}"
  19. template_name: "deploy-heketi"
  20. create: True
  21. params:
  22. IMAGE_NAME: "{{ glusterfs_heketi_image }}"
  23. HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
  24. HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
  25. HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
  26. HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
  27. HEKETI_FSTAB: "{{ glusterfs_heketi_fstab }}"
  28. CLUSTER_NAME: "{{ glusterfs_name }}"
  29. - name: Set heketi Deployed fact
  30. set_fact:
  31. glusterfs_heketi_deploy_is_missing: False