Adding CDH to the list of default plugins

CDH is now present as a plugin with the default
installation of Sahara.

Change-Id: Iff5a9a5f51ab96efb0b787089ec8138691025c29
Closes-Bug: #1375317
This commit is contained in:
Chad Roberts 2014-09-29 15:06:19 -04:00
parent bcd1c76651
commit 808eeae8f0
3 changed files with 3 additions and 3 deletions

View File

@ -347,7 +347,7 @@
# List of plugins to be loaded. Sahara preserves the order of the list # List of plugins to be loaded. Sahara preserves the order of the list
# when returning it. (list value) # when returning it. (list value)
#plugins = vanilla,hdp,spark #plugins = vanilla,hdp,spark,cdh
# Enables data locality for hadoop cluster. Also enables data locality # Enables data locality for hadoop cluster. Also enables data locality
# for Swift used by hadoop. If enabled, 'compute_topology' and # for Swift used by hadoop. If enabled, 'compute_topology' and

View File

@ -95,7 +95,7 @@
# List of plugins to be loaded. Sahara preserves the order of # List of plugins to be loaded. Sahara preserves the order of
# the list when returning it. (list value) # the list when returning it. (list value)
#plugins=vanilla,hdp,spark #plugins=vanilla,hdp,spark,cdh
[database] [database]

View File

@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__)
opts = [ opts = [
cfg.ListOpt('plugins', cfg.ListOpt('plugins',
default=['vanilla', 'hdp', 'spark'], default=['vanilla', 'hdp', 'spark', 'cdh'],
help='List of plugins to be loaded. Sahara preserves the ' help='List of plugins to be loaded. Sahara preserves the '
'order of the list when returning it.'), 'order of the list when returning it.'),
] ]