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" return "Cloudera Plugin"
def get_description(self): def get_description(self):
return _("This plugin provides an ability to launch CDH clusters with " return _('The Cloudera Sahara plugin provides the ability to '
"Cloudera Manager management console.") 'launch the Cloudera distribution of Apache Hadoop '
'(CDH) with Cloudera Manager management console.')
def get_versions(self): def get_versions(self):
return ['5'] return ['5']

View File

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

View File

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