diff --git a/sahara/plugins/cdh/plugin.py b/sahara/plugins/cdh/plugin.py index dac1f7fd..2d207d50 100644 --- a/sahara/plugins/cdh/plugin.py +++ b/sahara/plugins/cdh/plugin.py @@ -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'] diff --git a/sahara/plugins/hdp/ambariplugin.py b/sahara/plugins/hdp/ambariplugin.py index 2faefd1a..229ffade 100644 --- a/sahara/plugins/hdp/ambariplugin.py +++ b/sahara/plugins/hdp/ambariplugin.py @@ -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 diff --git a/sahara/plugins/vanilla/plugin.py b/sahara/plugins/vanilla/plugin.py index 991ac15f..57624617 100644 --- a/sahara/plugins/vanilla/plugin.py +++ b/sahara/plugins/vanilla/plugin.py @@ -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)