diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-10-10 17:27:56 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-10-30 09:25:45 -0400 |
commit | bbafaeb918a2ffbd591595bb5fb2a99eb900721d (patch) | |
tree | 4ec82db8913eb79ce03e4dd552936aa9d1769d62 | |
parent | b0ba3dc4b11199c5ccae37bdc452e3e35e225edc (diff) | |
download | openshift-bbafaeb918a2ffbd591595bb5fb2a99eb900721d.tar.gz openshift-bbafaeb918a2ffbd591595bb5fb2a99eb900721d.tar.bz2 openshift-bbafaeb918a2ffbd591595bb5fb2a99eb900721d.tar.xz openshift-bbafaeb918a2ffbd591595bb5fb2a99eb900721d.zip |
Add dm_thin_pool for gluster use
3 files changed, 26 insertions, 0 deletions
diff --git a/playbooks/common/openshift-glusterfs/config.yml b/playbooks/common/openshift-glusterfs/config.yml index 80cda9e21..c2ae5f313 100644 --- a/playbooks/common/openshift-glusterfs/config.yml +++ b/playbooks/common/openshift-glusterfs/config.yml @@ -17,6 +17,11 @@ tasks_from: firewall.yml when: - openshift_storage_glusterfs_is_native | default(True) | bool + - include_role: + name: openshift_storage_glusterfs + tasks_from: kernel_modules.yml + when: + - openshift_storage_glusterfs_is_native | default(True) | bool - name: Open firewall ports for GlusterFS registry nodes hosts: glusterfs_registry @@ -26,6 +31,11 @@ tasks_from: firewall.yml when: - openshift_storage_glusterfs_registry_is_native | default(True) | bool + - include_role: + name: openshift_storage_glusterfs + tasks_from: kernel_modules.yml + when: + - openshift_storage_glusterfs_registry_is_native | default(True) | bool - name: Configure GlusterFS hosts: oo_first_master diff --git a/roles/openshift_storage_glusterfs/tasks/kernel_modules.yml b/roles/openshift_storage_glusterfs/tasks/kernel_modules.yml new file mode 100644 index 000000000..030fa81c9 --- /dev/null +++ b/roles/openshift_storage_glusterfs/tasks/kernel_modules.yml @@ -0,0 +1,12 @@ +--- +- name: Ensure device mapper modules loaded + template: + src: glusterfs.conf + dest: /etc/modules-load.d/glusterfs.conf + register: km + +- name: load kernel modules + systemd: + name: systemd-modules-load.service + state: restarted + when: km | changed diff --git a/roles/openshift_storage_glusterfs/templates/glusterfs.conf b/roles/openshift_storage_glusterfs/templates/glusterfs.conf new file mode 100644 index 000000000..dd4d6e6f7 --- /dev/null +++ b/roles/openshift_storage_glusterfs/templates/glusterfs.conf @@ -0,0 +1,4 @@ +#{{ ansible_managed }} +dm_thin_pool +dm_snapshot +dm_mirror
\ No newline at end of file |