glusterfs-storageclass.yml.j2 698 B

1234567891011121314151617
  1. ---
  2. apiVersion: storage.k8s.io/v1
  3. kind: StorageClass
  4. metadata:
  5. name: glusterfs-{{ glusterfs_name }}
  6. {% if glusterfs_storageclass_default is defined and glusterfs_storageclass_default %}
  7. annotations:
  8. storageclass.kubernetes.io/is-default-class: "true"
  9. {% endif %}
  10. provisioner: kubernetes.io/glusterfs
  11. parameters:
  12. resturl: "http://{% if glusterfs_heketi_is_native %}heketi-{{ glusterfs_name }}.{{ glusterfs_namespace }}.svc:8080{% else %}{{ glusterfs_heketi_url }}:{{ glusterfs_heketi_port }}{% endif %}"
  13. restuser: "admin"
  14. {% if glusterfs_heketi_admin_key is defined %}
  15. secretNamespace: "{{ glusterfs_namespace }}"
  16. secretName: "heketi-{{ glusterfs_name }}-admin-secret"
  17. {%- endif -%}