heketi_setup.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - name: Create heketi service account
  3. oc_serviceaccount:
  4. namespace: "{{ glusterfs_namespace }}"
  5. name: "heketi-{{ glusterfs_name }}-service-account"
  6. state: present
  7. - name: Add heketi service account to privileged SCC
  8. oc_adm_policy_user:
  9. namespace: "{{ glusterfs_namespace }}"
  10. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  11. resource_kind: scc
  12. resource_name: privileged
  13. state: present
  14. - name: Allow heketi service account to view/edit pods
  15. oc_adm_policy_user:
  16. namespace: "{{ glusterfs_namespace }}"
  17. user: "system:serviceaccount:{{ glusterfs_namespace }}:heketi-{{ glusterfs_name }}-service-account"
  18. resource_kind: role
  19. resource_name: edit
  20. state: present
  21. - name: Generate heketi config file
  22. template:
  23. src: "heketi.json.j2"
  24. dest: "{{ mktemp.stdout }}/heketi.json"
  25. - import_tasks: heketi_get_key.yml
  26. - name: Generate heketi admin key
  27. set_fact:
  28. glusterfs_heketi_admin_key: "{{ 32 | lib_utils_oo_generate_secret }}"
  29. when: glusterfs_heketi_admin_key is undefined
  30. - name: Generate heketi user key
  31. set_fact:
  32. glusterfs_heketi_user_key: "{{ 32 | lib_utils_oo_generate_secret }}"
  33. until:
  34. - glusterfs_heketi_user_key is defined
  35. - glusterfs_heketi_user_key != glusterfs_heketi_admin_key
  36. delay: 1
  37. retries: 10
  38. when: glusterfs_heketi_user_key is undefined
  39. - name: Copy heketi private key
  40. copy:
  41. src: "{{ glusterfs_heketi_ssh_keyfile | default(omit) }}"
  42. content: "{{ '' if glusterfs_heketi_ssh_keyfile is undefined else omit }}"
  43. dest: "{{ mktemp.stdout }}/private_key"
  44. - name: Create heketi config secret
  45. oc_secret:
  46. namespace: "{{ glusterfs_namespace }}"
  47. state: present
  48. name: "heketi-{{ glusterfs_name }}-config-secret"
  49. force: True
  50. files:
  51. - name: heketi.json
  52. path: "{{ mktemp.stdout }}/heketi.json"
  53. - name: private_key
  54. path: "{{ mktemp.stdout }}/private_key"