glusterfs_common.yml 3.2 KB

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