glusterfs_common.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ---
  2. - name: Make sure heketi-client is installed
  3. package:
  4. name: heketi-client
  5. state: present
  6. when:
  7. - not openshift_is_atomic | bool
  8. - not glusterfs_heketi_is_native | bool
  9. register: result
  10. until: result is succeeded
  11. - name: Verify heketi-cli is installed
  12. shell: "command -v {{ glusterfs_heketi_cli }} >/dev/null 2>&1 || { echo >&2 'ERROR: Make sure heketi-cli is available, then re-run the installer'; exit 1; }"
  13. changed_when: False
  14. when:
  15. - not glusterfs_heketi_is_native | bool
  16. - name: Verify target namespace exists
  17. oc_project:
  18. state: present
  19. name: "{{ glusterfs_namespace }}"
  20. node_selector: "{% if glusterfs_use_default_selector %}{{ omit }}{% endif %}"
  21. when: glusterfs_is_native or glusterfs_heketi_is_native or glusterfs_storageclass
  22. - name: Add namespace service accounts to privileged SCC
  23. oc_adm_policy_user:
  24. user: "system:serviceaccount:{{ glusterfs_namespace }}:{{ item }}"
  25. resource_kind: scc
  26. resource_name: privileged
  27. state: present
  28. with_items:
  29. - 'default'
  30. - 'router'
  31. when: glusterfs_is_native or glusterfs_heketi_is_native
  32. - import_tasks: glusterfs_deploy.yml
  33. when: glusterfs_is_native
  34. - import_tasks: heketi_setup.yml
  35. when: glusterfs_heketi_is_native
  36. # This must always be run. There are tasks further on in the play that require
  37. # require these variables to be properly set, even if the tasks are skipped, so
  38. # that Ansible can properly parse the tasks.
  39. - import_tasks: heketi_pod_check.yml
  40. - import_tasks: heketi_init_deploy.yml
  41. when:
  42. - glusterfs_heketi_is_native
  43. - glusterfs_heketi_deploy_is_missing
  44. - glusterfs_heketi_is_missing
  45. - import_tasks: heketi_load.yml
  46. when:
  47. - glusterfs_heketi_topology_load
  48. - import_tasks: heketi_init_db.yml
  49. when:
  50. - glusterfs_heketi_is_native
  51. - not glusterfs_heketi_deploy_is_missing
  52. - glusterfs_heketi_is_missing
  53. - glusterfs_heketi_topology_load
  54. - import_tasks: heketi_deploy.yml
  55. when:
  56. - glusterfs_heketi_is_native
  57. - glusterfs_heketi_is_missing
  58. - name: Check if gluster-s3 can't be deployed
  59. set_fact:
  60. glusterfs_s3_deploy: False
  61. when:
  62. - "glusterfs_s3_account is not defined or glusterfs_s3_user is not defined or glusterfs_s3_password is not defined"
  63. - block:
  64. - name: Create heketi secret
  65. oc_secret:
  66. namespace: "{{ glusterfs_namespace }}"
  67. state: present
  68. name: "heketi-{{ glusterfs_name }}-admin-secret"
  69. type: "kubernetes.io/glusterfs"
  70. force: True
  71. contents:
  72. - path: key
  73. data: "{{ glusterfs_heketi_admin_key }}"
  74. when:
  75. - glusterfs_heketi_admin_key is defined
  76. - name: Generate GlusterFS StorageClass file
  77. template:
  78. src: "glusterfs-storageclass.yml.j2"
  79. dest: "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  80. - name: Create GlusterFS StorageClass
  81. oc_obj:
  82. state: present
  83. kind: storageclass
  84. name: "glusterfs-{{ glusterfs_name }}"
  85. files:
  86. - "{{ mktemp.stdout }}/glusterfs-storageclass.yml"
  87. when:
  88. - glusterfs_storageclass or glusterfs_s3_deploy
  89. - import_tasks: glusterblock_deploy.yml
  90. when: glusterfs_block_deploy
  91. - import_tasks: glusterblock_storageclass.yml
  92. when: glusterfs_block_storageclass
  93. - import_tasks: gluster_s3_deploy.yml
  94. when: glusterfs_s3_deploy