heketi.json.j2 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "_port_comment": "Heketi Server Port Number",
  3. "port" : "8080",
  4. "_use_auth": "Enable JWT authorization. Please enable for deployment",
  5. "use_auth" : false,
  6. "_jwt" : "Private keys for access",
  7. "jwt" : {
  8. "_admin" : "Admin has access to all APIs",
  9. "admin" : {
  10. "key" : "My Secret"
  11. },
  12. "_user" : "User only has access to /volumes endpoint",
  13. "user" : {
  14. "key" : "My Secret"
  15. }
  16. },
  17. "_glusterfs_comment": "GlusterFS Configuration",
  18. "glusterfs" : {
  19. "_executor_comment": "Execute plugin. Possible choices: mock, kubernetes, ssh",
  20. "executor" : "{{ glusterfs_heketi_executor }}",
  21. "_db_comment": "Database file name",
  22. "db" : "/var/lib/heketi/heketi.db",
  23. "sshexec" : {
  24. "keyfile" : "/etc/heketi/private_key",
  25. "port" : "{{ glusterfs_heketi_ssh_port }}",
  26. "user" : "{{ glusterfs_heketi_ssh_user }}",
  27. "sudo" : {{ glusterfs_heketi_ssh_sudo | lower }}
  28. },
  29. "_auto_create_block_hosting_volume": "Creates Block Hosting volumes automatically if not found or exsisting volume exhausted",
  30. "auto_create_block_hosting_volume": {{ glusterfs_block_host_vol_create | lower }},
  31. "_block_hosting_volume_size": "New block hosting volume will be created in size mentioned, This is considered only if auto-create is enabled.",
  32. "block_hosting_volume_size": {{ glusterfs_block_host_vol_size }}
  33. }
  34. }