123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- var App = require('app');
- App.AddHostController = Em.Controller.extend({
- name: 'addHostController',
- /**
- * All wizards data will be stored in this variable
- *
- * cluster - cluster name
- * hosts - hosts, ssh key, repo info, etc.
- * services - services list
- * hostsInfo - list of selected hosts
- * slaveComponentHosts, hostSlaveComponents - info about slave hosts
- * masterComponentHosts - info about master hosts
- * config??? - to be described later
- */
- content: Em.Object.create({
- cluster: null,
- hosts: null,
- services: null,
- hostsInfo: null,
- slaveComponentHosts: null,
- masterComponentHosts: null,
- serviceConfigProperties: null,
- advancedServiceConfig: null,
- controllerName: 'addHostController'
- }),
- /**
- * Used for hiding back button in wizard
- */
- hideBackButton: true,
- isStepDisabled: [],
- totalSteps: 9,
- init: function () {
- this.isStepDisabled.pushObject(Ember.Object.create({
- step: 1,
- value: false
- }));
- for (var i = 2; i <= this.totalSteps; i++) {
- this.isStepDisabled.pushObject(Ember.Object.create({
- step: i,
- value: true
- }));
- }
- },
- setStepsEnable: function () {
- for (var i = 2; i <= this.totalSteps; i++) {
- var step = this.get('isStepDisabled').findProperty('step', i);
- if (i <= this.get('currentStep')) {
- step.set('value', false);
- } else {
- step.set('value', true);
- }
- }
- }.observes('currentStep'),
- /**
- * Return current step of Add Host Wizard
- */
- currentStep: function () {
- return App.get('router').getWizardCurrentStep('addHost');
- }.property(),
- clusters: null,
- /**
- * Set current step to new value.
- * Method moved from App.router.setInstallerCurrentStep
- * @param currentStep
- * @param completed
- */
- setCurrentStep: function (currentStep, completed) {
- App.db.setWizardCurrentStep('addHost', currentStep, completed);
- this.set('currentStep', currentStep);
- },
- isStep1: function () {
- return this.get('currentStep') == 1;
- }.property('currentStep'),
- isStep2: function () {
- return this.get('currentStep') == 2;
- }.property('currentStep'),
- isStep3: function () {
- return this.get('currentStep') == 3;
- }.property('currentStep'),
- isStep4: function () {
- return this.get('currentStep') == 4;
- }.property('currentStep'),
- isStep5: function () {
- return this.get('currentStep') == 5;
- }.property('currentStep'),
- isStep6: function () {
- return this.get('currentStep') == 6;
- }.property('currentStep'),
- isStep7: function () {
- return this.get('currentStep') == 7;
- }.property('currentStep'),
- isStep8: function () {
- return this.get('currentStep') == 8;
- }.property('currentStep'),
- isStep9: function () {
- return this.get('currentStep') == 9;
- }.property('currentStep'),
- isStep10: function () {
- return this.get('currentStep') == 10;
- }.property('currentStep'),
- gotoStep: function (step) {
- if (this.get('isStepDisabled').findProperty('step', step).get('value') === false) {
- App.router.send('gotoStep' + step);
- }
- },
- gotoStep1: function () {
- this.gotoStep(1);
- },
- gotoStep2: function () {
- this.gotoStep(2);
- },
- gotoStep3: function () {
- this.gotoStep(3);
- },
- gotoStep4: function () {
- this.gotoStep(4);
- },
- gotoStep5: function () {
- this.gotoStep(5);
- },
- gotoStep6: function () {
- this.gotoStep(6);
- },
- gotoStep7: function () {
- this.gotoStep(7);
- },
- gotoStep8: function () {
- this.gotoStep(8);
- },
- gotoStep9: function () {
- this.gotoStep(9);
- },
- gotoStep10: function () {
- this.gotoStep(10);
- },
- /**
- * Load clusterInfo(step1) to model
- */
- loadClusterInfo: function(){
- var cluster = {
- name: App.router.getClusterName(),
- status: "",
- isCompleted: true
- };
- this.set('content.cluster', cluster);
- console.log("AddHostController:loadClusterInfo: loaded data ", cluster);
- },
- /**
- * save status of the cluster. This is called from step8 and step9 to persist install and start requestId
- * @param clusterStatus object with status, isCompleted, requestId, isInstallError and isStartError field.
- */
- saveClusterStatus: function (clusterStatus) {
- clusterStatus.name = this.get('content.cluster.name');
- this.set('content.cluster', clusterStatus);
- console.log('called saveClusterStatus ' + JSON.stringify(clusterStatus));
- App.db.setClusterStatus(clusterStatus);
- },
- /**
- * Temporary function for wizardStep9, before back-end integration
- */
- setInfoForStep9: function () {
- var hostInfo = App.db.getHosts();
- for (var index in hostInfo) {
- hostInfo[index].status = "pending";
- hostInfo[index].message = 'Information';
- hostInfo[index].progress = '0';
- }
- App.db.setHosts(hostInfo);
- },
- /**
- * Load all data for <code>Specify Host(install step2)</code> step
- * Data Example:
- * {
- * hostNames: '',
- * manualInstall: false,
- * sshKey: '',
- * passphrase: '',
- * confirmPassphrase: '',
- * localRepo: false,
- * localRepoPath: ''
- * }
- */
- loadInstallOptions: function () {
- if (!this.content.hosts) {
- this.content.hosts = Em.Object.create();
- }
- var hostsInfo = Em.Object.create();
- hostsInfo.oldHostNames = App.Host.find().getEach('id').join(" <br/>");
- hostsInfo.hostNames = App.db.getAllHostNames() || ''; //empty string if undefined
- var installType = App.db.getInstallType();
- //false if installType not equals 'manual'
- hostsInfo.manualInstall = installType && installType.installType === 'manual' || false;
- var softRepo = App.db.getSoftRepo();
- if (softRepo && softRepo.repoType === 'local') {
- hostsInfo.localRepo = true;
- hostsInfo.localRepopath = softRepo.repoPath;
- } else {
- hostsInfo.localRepo = false;
- hostsInfo.localRepoPath = '';
- }
- hostsInfo.sshKey = '';
- hostsInfo.passphrase = '';
- hostsInfo.confirmPassphrase = '';
- this.set('content.hosts', hostsInfo);
- console.log("AddHostController:loadHosts: loaded data ", hostsInfo);
- },
- /**
- * Save data, which user filled, to main controller
- * @param stepController App.WizardStep2Controller
- */
- saveHosts: function (stepController) {
- //TODO: put data to content.hosts and only then save it)
- //App.db.setBootStatus(false);
- App.db.setAllHostNames(stepController.get('hostNames'));
- App.db.setHosts(stepController.getHostInfo());
- if (stepController.get('manualInstall') === false) {
- App.db.setInstallType({installType: 'ambari' });
- } else {
- App.db.setInstallType({installType: 'manual' });
- }
- if (stepController.get('localRepo') === false) {
- App.db.setSoftRepo({ 'repoType': 'remote', 'repoPath': null});
- } else {
- App.db.setSoftRepo({ 'repoType': 'local', 'repoPath': stepController.get('localRepoPath') });
- }
- },
- /**
- * Remove host from model. Used at <code>Confirm hosts(step2)</code> step
- * @param hosts Array of hosts, which we want to delete
- */
- removeHosts: function (hosts) {
- //todo Replace this code with real logic
- App.db.removeHosts(hosts);
- },
- /**
- * Save data, which user filled, to main controller
- * @param stepController App.WizardStep3Controller
- */
- saveConfirmedHosts: function (stepController) {
- var hostInfo = {};
- App.Host.find().forEach(function(_host){
- hostInfo[_host.get('id')] = {
- name: _host.get('hostName'),
- cpu: _host.get('cpu'),
- memory: _host.get('memory'),
- bootStatus: 'success',
- isInstalled: true
- };
- });
- stepController.get('content.hostsInfo').forEach(function (_host) {
- hostInfo[_host.name] = {
- name: _host.name,
- cpu: _host.cpu,
- memory: _host.memory,
- bootStatus: _host.bootStatus,
- isInstalled: false
- };
- });
- console.log('addHostController:saveConfirmedHosts: save hosts ', hostInfo);
- App.db.setHosts(hostInfo);
- this.set('content.hostsInfo', hostInfo);
- },
- /**
- * Load confirmed hosts.
- * Will be used at <code>Assign Masters(step5)</code> step
- */
- loadConfirmedHosts: function(){
- this.set('content.hostsInfo', App.db.getHosts());
- },
- /**
- * Save data after installation to main controller
- * @param stepController App.WizardStep9Controller
- */
- saveInstalledHosts: function (stepController) {
- var hosts = stepController.get('hosts');
- var hostInfo = App.db.getHosts();
- for (var index in hostInfo) {
- hostInfo[index].status = "pending";
- var host = hosts.findProperty('name', hostInfo[index].name);
- if (host) {
- hostInfo[index].status = host.status;
- hostInfo[index].message = host.message;
- hostInfo[index].progress = host.progress;
- }
- }
- App.db.setHosts(hostInfo);
- this.set('content.hostsInfo', hostInfo);
- console.log('addHostController:saveInstalledHosts: save hosts ', hostInfo);
- },
- /**
- * Remove all data for hosts
- */
- clearHosts: function () {
- var hosts = this.get('content').get('hosts');
- if (hosts) {
- hosts.hostNames = '';
- hosts.manualInstall = false;
- hosts.localRepo = '';
- hosts.localRepopath = '';
- hosts.sshKey = '';
- hosts.passphrase = '';
- hosts.confirmPassphrase = '';
- }
- App.db.setHosts(null);
- App.db.setAllHostNames(null);
- },
- /**
- * Load services data. Will be used at <code>Select services(step4)</code> step
- */
- loadServices: function () {
- var servicesInfo = App.db.getService();
- servicesInfo.forEach(function (item, index) {
- servicesInfo[index] = Em.Object.create(item);
- });
- this.set('content.services', servicesInfo);
- console.log('addHostController.loadServices: loaded data ', servicesInfo);
- console.log('selected services ', servicesInfo.filterProperty('isSelected', true).mapProperty('serviceName'));
- },
- /**
- * Save data to model
- * @param stepController App.WizardStep4Controller
- */
- saveServices: function (stepController) {
- var serviceNames = [];
- // we can also do it without stepController since all data,
- // changed at page, automatically changes in model(this.content.services)
- App.db.setService(stepController.get('content'));
- stepController.filterProperty('isSelected', true).forEach(function (item) {
- serviceNames.push(item.serviceName);
- });
- App.db.setSelectedServiceNames(serviceNames);
- console.log('addHostController.saveServices: saved data ', serviceNames);
- },
- /**
- * Save Master Component Hosts data to Main Controller
- * @param stepController App.WizardStep5Controller
- */
- saveMasterComponentHosts: function (stepController) {
- var obj = stepController.get('selectedServicesMasters');
- var masterComponentHosts = [];
- obj.forEach(function (_component) {
- masterComponentHosts.push({
- display_name: _component.display_name,
- component: _component.component_name,
- hostName: _component.selectedHost
- });
- });
- console.log("AddHostController.saveComponentHosts: saved hosts ", masterComponentHosts);
- App.db.setMasterComponentHosts(masterComponentHosts);
- this.set('content.masterComponentHosts', masterComponentHosts);
- },
- /**
- * Load master component hosts data for using in required step controllers
- */
- loadMasterComponentHosts: function () {
- var masterComponentHosts = App.db.getMasterComponentHosts();
- this.set("content.masterComponentHosts", masterComponentHosts);
- console.log("AddHostController.loadMasterComponentHosts: loaded hosts ", masterComponentHosts);
- },
- /**
- * Save slaveHostComponents to main controller
- * @param stepController
- */
- saveSlaveComponentHosts: function (stepController) {
- var hosts = stepController.get('hosts');
- var isMrSelected = stepController.get('isMrSelected');
- var isHbSelected = stepController.get('isHbSelected');
- var dataNodeHosts = [];
- var taskTrackerHosts = [];
- var regionServerHosts = [];
- var clientHosts = [];
- hosts.forEach(function (host) {
- if (host.get('isDataNode')) {
- dataNodeHosts.push({
- hostName: host.hostName,
- group: 'Default',
- isInstalled: host.get('isDataNodeInstalled')
- });
- }
- if (isMrSelected && host.get('isTaskTracker')) {
- taskTrackerHosts.push({
- hostName: host.hostName,
- group: 'Default',
- isInstalled: host.get('isTaskTrackerInstalled')
- });
- }
- if (isHbSelected && host.get('isRegionServer')) {
- regionServerHosts.push({
- hostName: host.hostName,
- group: 'Default',
- isInstalled: host.get('isRegionServerInstalled')
- });
- }
- if (host.get('isClient')) {
- clientHosts.pushObject({
- hostName: host.hostName,
- group: 'Default',
- isInstalled: host.get('isClientInstalled')
- });
- }
- }, this);
- var slaveComponentHosts = [];
- slaveComponentHosts.push({
- componentName: 'DATANODE',
- displayName: 'DataNode',
- hosts: dataNodeHosts
- });
- if (isMrSelected) {
- slaveComponentHosts.push({
- componentName: 'TASKTRACKER',
- displayName: 'TaskTracker',
- hosts: taskTrackerHosts
- });
- }
- if (isHbSelected) {
- slaveComponentHosts.push({
- componentName: 'HBASE_REGIONSERVER',
- displayName: 'RegionServer',
- hosts: regionServerHosts
- });
- }
- slaveComponentHosts.pushObject({
- componentName: 'CLIENT',
- displayName: 'client',
- hosts: clientHosts
- });
- App.db.setSlaveComponentHosts(slaveComponentHosts);
- console.log('addHostController.slaveComponentHosts: saved hosts', slaveComponentHosts);
- this.set('content.slaveComponentHosts', slaveComponentHosts);
- },
- /**
- * return slaveComponents bound to hosts
- * @return {Array}
- */
- getSlaveComponentHosts: function () {
- var components = [{
- name : 'DATANODE',
- service : 'HDFS'
- },
- {
- name: 'TASKTRACKER',
- service: 'MAPREDUCE'
- },{
- name: 'HBASE_REGIONSERVER',
- service: 'HBASE'
- }];
- var result = [];
- var services = App.Service.find();
- var selectedServices = this.get('content.services').filterProperty('isSelected', true).mapProperty('serviceName');
- for(var index=0; index < components.length; index++){
- var comp = components[index];
- if(!selectedServices.contains(comp.service)){
- continue;
- }
- var service = services.findProperty('id', comp.service);
- var hosts = [];
- service.get('hostComponents').filterProperty('componentName', comp.name).forEach(function (host_component) {
- hosts.push({
- group: "Default",
- hostName: host_component.get('host.id'),
- isInstalled: true
- });
- }, this);
- result.push({
- componentName: comp.name,
- displayName: App.format.role(comp.name),
- hosts: hosts,
- isInstalled: true
- })
- }
- var clientsHosts = App.HostComponent.find().filterProperty('componentName', 'HDFS_CLIENT');
- var hosts = [];
- clientsHosts.forEach(function (host_component) {
- hosts.push({
- group: "Default",
- hostName: host_component.get('host.id'),
- isInstalled: true
- });
- }, this);
- result.push({
- componentName: 'CLIENT',
- displayName: 'client',
- hosts: hosts,
- isInstalled: true
- })
- return result;
- },
- /**
- * Load master component hosts data for using in required step controllers
- */
- loadSlaveComponentHosts: function () {
- var slaveComponentHosts = App.db.getSlaveComponentHosts();
- if(!slaveComponentHosts){
- slaveComponentHosts = this.getSlaveComponentHosts();
- }
- this.set("content.slaveComponentHosts", slaveComponentHosts);
- console.log("AddHostController.loadSlaveComponentHosts: loaded hosts ", slaveComponentHosts);
- },
- /**
- * Save config properties
- * @param stepController Step7WizardController
- */
- saveServiceConfigProperties: function (stepController) {
- var serviceConfigProperties = [];
- stepController.get('stepConfigs').forEach(function (_content) {
- _content.get('configs').forEach(function (_configProperties) {
- var configProperty = {
- name: _configProperties.get('name'),
- value: _configProperties.get('value'),
- service: _configProperties.get('serviceName')
- };
- serviceConfigProperties.push(configProperty);
- }, this);
- }, this);
- App.db.setServiceConfigProperties(serviceConfigProperties);
- this.set('content.serviceConfigProperties', serviceConfigProperties);
- },
- /**
- * Load serviceConfigProperties to model
- */
- loadServiceConfigProperties: function () {
- var serviceConfigProperties = App.db.getServiceConfigProperties();
- this.set('content.serviceConfigProperties', serviceConfigProperties);
- console.log("AddHostController.loadServiceConfigProperties: loaded config ", serviceConfigProperties);
- },
- /**
- * Load information about hosts with clients components
- */
- loadClients: function(){
- var clients = App.db.getClientsForSelectedServices();
- this.set('content.clients', clients);
- console.log("AddHostController.loadClients: loaded list ", clients);
- },
- /**
- * Generate clients list for selected services and save it to model
- * @param stepController step4WizardController
- */
- saveClients: function(stepController){
- var clients = [];
- var serviceComponents = require('data/service_components');
- var hostComponents = App.HostComponent.find();
- stepController.get('content').filterProperty('isSelected',true).forEach(function (_service) {
- var client = serviceComponents.filterProperty('service_name', _service.serviceName).findProperty('isClient', true);
- if (client) {
- clients.pushObject({
- component_name: client.component_name,
- display_name: client.display_name,
- isInstalled: hostComponents.filterProperty('componentName', client.component_name).length > 0
- });
- }
- }, this);
- App.db.setClientsForSelectedServices(clients);
- this.set('content.clients', clients);
- console.log("AddHostController.saveClients: saved list ", clients);
- },
- /**
- * Load data for all steps until <code>current step</code>
- */
- loadAllPriorSteps: function () {
- var step = this.get('currentStep');
- switch (step) {
- case '8':
- case '7':
- case '6':
- this.loadServiceConfigProperties();
- case '5':
- this.loadClients();
- case '4':
- this.loadMasterComponentHosts();
- this.loadSlaveComponentHosts();
- this.loadConfirmedHosts();
- case '3':
- this.loadClients();
- this.loadServices();
- case '2':
- this.loadConfirmedHosts();
- case '1':
- this.loadInstallOptions();
- case '0':
- this.loadClusterInfo();
- }
- },
- loadAdvancedConfigs: function () {
- App.db.getSelectedServiceNames().forEach(function (_serviceName) {
- this.loadAdvancedConfig(_serviceName);
- }, this);
- },
- /**
- * Generate serviceProperties save it to localdata
- * called form stepController step6WizardController
- */
- loadAdvancedConfig: function (serviceName) {
- var self = this;
- var url = (App.testMode) ? '/data/wizard/stack/hdp/version01/' + serviceName + '.json' : App.apiPrefix + '/stacks/HDP/version/1.2.0/services/' + serviceName; // TODO: get this url from the stack selected by the user in Install Options page
- var method = 'GET';
- $.ajax({
- type: method,
- url: url,
- async: false,
- dataType: 'text',
- timeout: App.timeout,
- success: function (data) {
- var jsonData = jQuery.parseJSON(data);
- console.log("TRACE: Step6 submit -> In success function for the loadAdvancedConfig call");
- console.log("TRACE: Step6 submit -> value of the url is: " + url);
- var serviceComponents = jsonData.properties;
- serviceComponents.setEach('serviceName', serviceName);
- var configs;
- if (App.db.getAdvancedServiceConfig()) {
- configs = App.db.getAdvancedServiceConfig();
- } else {
- configs = [];
- }
- configs = configs.concat(serviceComponents);
- self.set('content.advancedServiceConfig', configs);
- App.db.setAdvancedServiceConfig(configs);
- console.log('TRACE: servicename: ' + serviceName);
- },
- error: function (request, ajaxOptions, error) {
- console.log("TRACE: STep6 submit -> In error function for the loadAdvancedConfig call");
- console.log("TRACE: STep6 submit-> value of the url is: " + url);
- console.log("TRACE: STep6 submit-> error code status is: " + request.status);
- console.log('Step6 submit: Error message is: ' + request.responseText);
- },
- statusCode: require('data/statusCodes')
- });
- },
- /**
- * Generate clients list for selected services and save it to model
- * @param stepController step8WizardController or step9WizardController
- */
- installServices: function (isRetry) {
- if(!isRetry && this.get('content.cluster.requestId')){
- return;
- }
- var self = this;
- var clusterName = this.get('content.cluster.name');
- var url = (App.testMode) ? '/data/wizard/deploy/poll_1.json' : App.apiPrefix + '/clusters/' + clusterName + '/services?state=INIT';
- var method = (App.testMode) ? 'GET' : 'PUT';
- var data = '{"ServiceInfo": {"state": "INSTALLED"}}';
- $.ajax({
- type: method,
- url: url,
- data: data,
- async: false,
- dataType: 'text',
- timeout: App.timeout,
- success: function (data) {
- var jsonData = jQuery.parseJSON(data);
- var installSartTime = new Date().getTime();
- console.log("TRACE: STep8 -> In success function for the installService call");
- console.log("TRACE: STep8 -> value of the url is: " + url);
- if (jsonData) {
- var requestId = jsonData.href.match(/.*\/(.*)$/)[1];
- console.log('requestId is: ' + requestId);
- var clusterStatus = {
- status: 'PENDING',
- requestId: requestId,
- isInstallError: false,
- isCompleted: false,
- installStartTime: installSartTime
- };
- self.saveClusterStatus(clusterStatus);
- } else {
- console.log('ERROR: Error occurred in parsing JSON data');
- }
- },
- error: function (request, ajaxOptions, error) {
- console.log("TRACE: STep8 -> In error function for the installService call");
- console.log("TRACE: STep8 -> value of the url is: " + url);
- console.log("TRACE: STep8 -> error code status is: " + request.status);
- console.log('Step8: Error message is: ' + request.responseText);
- var clusterStatus = {
- status: 'PENDING',
- isInstallError: true,
- isCompleted: false
- };
- self.saveClusterStatus(clusterStatus);
- },
- statusCode: require('data/statusCodes')
- });
- },
- /**
- * Remove all loaded data.
- * Created as copy for App.router.clearAllSteps
- */
- clearAllSteps: function () {
- this.clearHosts();
- //todo it)
- },
- /**
- * Clear all temporary data
- */
- finish: function(){
- this.setCurrentStep('1', false);
- App.db.setService(undefined); //not to use this data at AddService page
- App.db.setHosts(undefined);
- App.db.setMasterComponentHosts(undefined);
- App.db.setSlaveComponentHosts(undefined);
- }
- });
|