summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts
diff options
context:
space:
mode:
authorRobert van Veelen <rvanveelen@tremorvideo.com>2016-02-10 16:28:37 +0000
committerRobert van Veelen <rvanveelen@tremorvideo.com>2016-02-10 16:28:37 +0000
commit2419624b7aa8b626bf537ef106af9836aefa5035 (patch)
treee80223fc13aa198a0460667299fcc30f2ee313f4 /roles/openshift_facts
parent491890380ff509f10d9e2635641874d681eca772 (diff)
downloadopenshift-2419624b7aa8b626bf537ef106af9836aefa5035.tar.gz
openshift-2419624b7aa8b626bf537ef106af9836aefa5035.tar.bz2
openshift-2419624b7aa8b626bf537ef106af9836aefa5035.tar.xz
openshift-2419624b7aa8b626bf537ef106af9836aefa5035.zip
add default storage plugins to 'origin' deployment_type
Diffstat (limited to 'roles/openshift_facts')
-rwxr-xr-xroles/openshift_facts/library/openshift_facts.py2
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 71397275a..01329d008 100755
--- a/roles/openshift_facts/library/openshift_facts.py
+++ b/roles/openshift_facts/library/openshift_facts.py
@@ -711,7 +711,7 @@ def set_deployment_facts_if_unset(facts):
if 'node' in facts:
deployment_type = facts['common']['deployment_type']
if 'storage_plugin_deps' not in facts['node']:
- if deployment_type in ['openshift-enterprise', 'atomic-enterprise']:
+ if deployment_type in ['openshift-enterprise', 'atomic-enterprise', 'origin']:
facts['node']['storage_plugin_deps'] = ['ceph', 'glusterfs', 'iscsi']
else:
facts['node']['storage_plugin_deps'] = []