Update plugin descriptions

We have a feedback to improve the plugin descriptions.

Change-Id: Ie9d6d113c35f957ee3e123750a4d9d14ba812ed9
This commit is contained in:
Sergey Lukjanov 2014-12-03 19:17:17 +03:00
parent e481a48ef0
commit dbf39c4134
3 changed files with 9 additions and 9 deletions

View File

@ -32,8 +32,9 @@ class CDHPluginProvider(p.ProvisioningPluginBase):
return "Cloudera Plugin"
def get_description(self):
return _("This plugin provides an ability to launch CDH clusters with "
"Cloudera Manager management console.")
return _('The Cloudera Sahara plugin provides the ability to '
'launch the Cloudera distribution of Apache Hadoop '
'(CDH) with Cloudera Manager management console.')
def get_versions(self):
return ['5']

View File

@ -259,9 +259,8 @@ class AmbariPlugin(p.ProvisioningPluginBase):
return 'Hortonworks Data Platform'
def get_description(self):
return _('The Hortonworks OpenStack plugin works with project '
'Sahara to automate the deployment of the Hortonworks data'
' platform on OpenStack based public & private clouds')
return _('The Hortonworks Sahara plugin automates the deployment '
'of the Hortonworks Data Platform (HDP) on OpenStack.')
def validate(self, cluster):
# creating operational config results in validation

View File

@ -23,10 +23,10 @@ class VanillaProvider(p.ProvisioningPluginBase):
self.version_factory = vhf.VersionFactory.get_instance()
def get_description(self):
return (
_("This plugin provides an ability to launch vanilla Apache Hadoop"
" cluster without any management consoles. Also it can "
"deploy Oozie and Hive"))
return _('The Apache Vanilla plugin provides the ability to launch '
'upstream Vanilla Apache Hadoop cluster without any '
'management consoles. It can also deploy the Oozie '
'component.')
def _get_version_handler(self, hadoop_version):
return self.version_factory.get_version_handler(hadoop_version)