heketi_deploy_part1.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Copy initial heketi resource files
  3. copy:
  4. src: "{{ openshift.common.examples_content_version }}/{{ 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. IMAGE_VERSION: "{{ glusterfs_heketi_version }}"
  24. HEKETI_ROUTE: "{{ glusterfs_heketi_url | default(['heketi-',glusterfs_name]|join) }}"
  25. HEKETI_USER_KEY: "{{ glusterfs_heketi_user_key }}"
  26. HEKETI_ADMIN_KEY: "{{ glusterfs_heketi_admin_key }}"
  27. HEKETI_EXECUTOR: "{{ glusterfs_heketi_executor }}"
  28. HEKETI_KUBE_NAMESPACE: "{{ glusterfs_namespace }}"
  29. CLUSTER_NAME: "{{ glusterfs_name }}"
  30. - name: Set heketi Deployed fact
  31. set_fact:
  32. glusterfs_heketi_deploy_is_missing: False