You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
824 B

  1. ---
  2. - name: "Kubernetes Apps | GlusterFS"
  3. include_tasks: "glusterfs.yml"
  4. - name: "Kubernetes Apps | Heketi Secrets"
  5. include_tasks: "secret.yml"
  6. - name: "Kubernetes Apps | Test Heketi"
  7. register: "heketi_service_state"
  8. command: "{{ bin_dir }}/kubectl get service heketi-storage-endpoints -o=name --ignore-not-found=true"
  9. changed_when: false
  10. - name: "Kubernetes Apps | Bootstrap Heketi"
  11. when: "heketi_service_state.stdout == \"\""
  12. include_tasks: "bootstrap.yml"
  13. - name: "Kubernetes Apps | Heketi"
  14. include_tasks: "heketi.yml"
  15. - name: "Kubernetes Apps | Heketi Topology"
  16. include_tasks: "topology.yml"
  17. - name: "Kubernetes Apps | Heketi Storage"
  18. include_tasks: "storage.yml"
  19. - name: "Kubernetes Apps | Storage Class"
  20. include_tasks: "storageclass.yml"
  21. - name: "Clean up"
  22. include_tasks: "cleanup.yml"