|
@@ -1185,7 +1185,6 @@ App.WizardStep8Controller = Em.Controller.extend({
|
|
hostNames.pushObject(_masterHost.hostName);
|
|
hostNames.pushObject(_masterHost.hostName);
|
|
}, this);
|
|
}, this);
|
|
break;
|
|
break;
|
|
-
|
|
|
|
case 'HIVE_CLIENT':
|
|
case 'HIVE_CLIENT':
|
|
//install HIVE client on NAGIOS_SERVER host
|
|
//install HIVE client on NAGIOS_SERVER host
|
|
masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {
|
|
masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {
|
|
@@ -1195,13 +1194,18 @@ App.WizardStep8Controller = Em.Controller.extend({
|
|
hostNames.pushObject(_masterHost.hostName);
|
|
hostNames.pushObject(_masterHost.hostName);
|
|
}, this);
|
|
}, this);
|
|
break;
|
|
break;
|
|
-
|
|
|
|
case 'HCAT':
|
|
case 'HCAT':
|
|
// install HCAT (client) on NAGIOS_SERVER host
|
|
// install HCAT (client) on NAGIOS_SERVER host
|
|
masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {
|
|
masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {
|
|
hostNames.pushObject(_masterHost.hostName);
|
|
hostNames.pushObject(_masterHost.hostName);
|
|
}, this);
|
|
}, this);
|
|
break;
|
|
break;
|
|
|
|
+ case 'YARN_CLIENT':
|
|
|
|
+ // install YARN_CLIENT on NAGIOS_SERVER host
|
|
|
|
+ masterHosts.filterProperty('component', 'NAGIOS_SERVER').filterProperty('isInstalled', false).forEach(function (_masterHost) {
|
|
|
|
+ hostNames.pushObject(_masterHost.hostName);
|
|
|
|
+ }, this);
|
|
|
|
+ break;
|
|
}
|
|
}
|
|
hostNames = hostNames.uniq();
|
|
hostNames = hostNames.uniq();
|
|
|
|
|