diff options
author | Robert van Veelen <rvanveelen@tremorvideo.com> | 2016-02-10 15:47:34 +0000 |
---|---|---|
committer | Robert van Veelen <rvanveelen@tremorvideo.com> | 2016-02-10 15:47:34 +0000 |
commit | 491890380ff509f10d9e2635641874d681eca772 (patch) | |
tree | d067a0c6df10c8173845b1d5d7fe798b98dd66c1 /roles | |
parent | 0dd276d51c5738533f993c44b39db8a7f2f43dfc (diff) | |
download | openshift-491890380ff509f10d9e2635641874d681eca772.tar.gz openshift-491890380ff509f10d9e2635641874d681eca772.tar.bz2 openshift-491890380ff509f10d9e2635641874d681eca772.tar.xz openshift-491890380ff509f10d9e2635641874d681eca772.zip |
update defaults and examples w/ iscsi plugin
Diffstat (limited to 'roles')
-rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index d11af307b..71397275a 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -712,7 +712,7 @@ def set_deployment_facts_if_unset(facts): deployment_type = facts['common']['deployment_type'] if 'storage_plugin_deps' not in facts['node']: if deployment_type in ['openshift-enterprise', 'atomic-enterprise']: - facts['node']['storage_plugin_deps'] = ['ceph', 'glusterfs'] + facts['node']['storage_plugin_deps'] = ['ceph', 'glusterfs', 'iscsi'] else: facts['node']['storage_plugin_deps'] = [] |