glusterblock_storageclass.yml 733 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Create heketi block secret
  3. oc_secret:
  4. namespace: "{{ glusterfs_namespace }}"
  5. state: present
  6. name: "heketi-{{ glusterfs_name }}-admin-secret-block"
  7. type: "gluster.org/glusterblock"
  8. force: True
  9. contents:
  10. - path: key
  11. data: "{{ glusterfs_heketi_admin_key }}"
  12. when: glusterfs_heketi_admin_key is defined
  13. - name: Generate Gluster Block StorageClass file
  14. template:
  15. src: "gluster-block-storageclass.yml.j2"
  16. dest: "{{ mktemp.stdout }}/gluster-block-storageclass.yml"
  17. - name: Create Gluster Block StorageClass
  18. oc_obj:
  19. state: present
  20. kind: storageclass
  21. name: "glusterfs-{{ glusterfs_name }}-block"
  22. files:
  23. - "{{ mktemp.stdout }}/gluster-block-storageclass.yml"