heketi_load.yml 1.8 KB

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Set heketi-cli command
  3. set_fact:
  4. glusterfs_heketi_client: "{% if glusterfs_heketi_is_native %}{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig rsh --namespace={{ glusterfs_namespace }} {%if heketi_pod is defined %}{{ heketi_pod.metadata.name }}{% elif deploy_heketi_pod is defined %}{{ deploy_heketi_pod.metadata.name }}{% endif %} {% endif %}{{ glusterfs_heketi_cli }} -s http://{% if glusterfs_heketi_is_native %}localhost:8080{% else %}{{ glusterfs_heketi_url }}:{{ glusterfs_heketi_port }}{% endif %} --user admin {% if glusterfs_heketi_admin_key is defined %}--secret '{{ glusterfs_heketi_admin_key }}'{% endif %}"
  5. - name: Verify heketi service
  6. command: "{{ glusterfs_heketi_client }} cluster list"
  7. changed_when: False
  8. - name: Generate topology file
  9. template:
  10. src: "topology.json.j2"
  11. dest: "{{ mktemp.stdout }}/topology.json"
  12. - name: Place heketi topology on heketi Pod
  13. shell: "{{ openshift_client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig exec --namespace={{ glusterfs_namespace }} -i {%if heketi_pod is defined %}{{ heketi_pod.metadata.name }}{% elif deploy_heketi_pod is defined %}{{ deploy_heketi_pod.metadata.name }}{% endif %} -- bash -c 'mkdir -p {{ mktemp.stdout }} && cat > {{ mktemp.stdout }}/topology.json' < {{ mktemp.stdout }}/topology.json"
  14. when:
  15. - glusterfs_heketi_is_native
  16. # If this command fails, check with
  17. # oc logs <heketi_pod>", then rsh to the glusterfs-storage-xyz pod and "vi /var/log/glusterfs/glusterd.log"
  18. # TODO(michaelgugino) Automate collecting a message about collecting this data
  19. - name: Load heketi topology
  20. command: "{{ glusterfs_heketi_client }} topology load --json={{ mktemp.stdout }}/topology.json 2>&1"
  21. register: topology_load
  22. failed_when: "topology_load.rc != 0 or 'Unable' in topology_load.stdout"