diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-01-31 11:55:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-31 11:55:21 -0800 |
commit | 73701d53f481b4d5886eb9ac4f89bfd337efefea (patch) | |
tree | d673a4e5600781a4010d599e908529910de45573 /roles/openshift_node/tasks | |
parent | 510b5ac41308225f01be96309eda6efc67a90467 (diff) | |
parent | 2573825c06e9d3a5601b6c1492f71fd0b70b2578 (diff) | |
download | openshift-73701d53f481b4d5886eb9ac4f89bfd337efefea.tar.gz openshift-73701d53f481b4d5886eb9ac4f89bfd337efefea.tar.bz2 openshift-73701d53f481b4d5886eb9ac4f89bfd337efefea.tar.xz openshift-73701d53f481b4d5886eb9ac4f89bfd337efefea.zip |
Merge pull request #6922 from mjudeikis/glusterfs-block-storage
Automatic merge from submit-queue.
Glusterfs block storage ansible support
GlusterBlock support in our ansible for glusterfs role
TODO:
- [ ] checking if only one SC is set default
- [ ] validate if mpath on nodes is configured
- [ ] add check for rhel vs atomic
- [x] make sure rpcbind is running and enabled BEFORE we even start glusterfs pods
- [x] enable mpath
- [ ] validate kernel module availability
@ckyriakidou
@jarrpa
Diffstat (limited to 'roles/openshift_node/tasks')
-rw-r--r-- | roles/openshift_node/tasks/storage_plugins/iscsi.yml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/roles/openshift_node/tasks/storage_plugins/iscsi.yml b/roles/openshift_node/tasks/storage_plugins/iscsi.yml index a8048c42f..72415f9a6 100644 --- a/roles/openshift_node/tasks/storage_plugins/iscsi.yml +++ b/roles/openshift_node/tasks/storage_plugins/iscsi.yml @@ -1,6 +1,32 @@ --- - name: Install iSCSI storage plugin dependencies - package: name=iscsi-initiator-utils state=present + package: + name: "{{ item }}" + state: present when: not openshift_is_atomic | bool register: result until: result is succeeded + with_items: + - iscsi-initiator-utils + - device-mapper-multipath + +- name: restart services + systemd: + name: "{{ item }}" + state: started + enabled: True + with_items: + - multipathd + - rpcbind + +- name: Template multipath configuration + template: + dest: "/etc/multipath.conf" + src: multipath.conf.j2 + backup: true + when: not openshift_is_atomic | bool + +#enable multipath +- name: Enable multipath + command: "mpathconf --enable" + when: not openshift_is_atomic | bool |