gluster-block-storageclass.yml.j2 738 B

12345678910111213141516171819
  1. ---
  2. apiVersion: storage.k8s.io/v1
  3. kind: StorageClass
  4. metadata:
  5. name: glusterfs-{{ glusterfs_name }}-block
  6. {% if glusterfs_block_storageclass_default is defined and glusterfs_block_storageclass_default %}
  7. annotations:
  8. storageclass.kubernetes.io/is-default-class: "true"
  9. {% endif %}
  10. provisioner: gluster.org/glusterblock
  11. parameters:
  12. resturl: "http://{% if glusterfs_heketi_is_native %}{{ glusterfs_heketi_route }}{% else %}{{ glusterfs_heketi_url }}:{{ glusterfs_heketi_port }}{% endif %}"
  13. restuser: "admin"
  14. chapauthenabled: "true"
  15. hacount: "3"
  16. {% if glusterfs_heketi_admin_key is defined %}
  17. restsecretnamespace: "{{ glusterfs_namespace }}"
  18. restsecretname: "heketi-{{ glusterfs_name }}-admin-secret-block"
  19. {%- endif -%}