41488737f6
This would also include collecting the possible boot devices. Change-Id: I49c47169d5c511f992480c60f64062183064bfc6 Closes-Bug: #1671567
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
/*
|
|
* Copyright 2017 Intel Corporation
|
|
*
|
|
* Licensed 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.
|
|
*/
|
|
(function() {
|
|
'use strict';
|
|
|
|
/*
|
|
* @ngdoc service
|
|
* @name horizon.dashboard.admin.ironic.bootdevice.service
|
|
* @description Service for setting the boot device of a node
|
|
*/
|
|
angular
|
|
.module('horizon.dashboard.admin.ironic')
|
|
.factory('horizon.dashboard.admin.ironic.bootdevice.service',
|
|
bootDeviceService);
|
|
|
|
bootDeviceService.$inject = [
|
|
'$uibModal',
|
|
'horizon.dashboard.admin.ironic.basePath',
|
|
'horizon.app.core.openstack-service-api.ironic'
|
|
];
|
|
|
|
function bootDeviceService($uibModal, basePath, ironic) {
|
|
var service = {
|
|
setBootDevice: setBootDevice
|
|
};
|
|
return service;
|
|
|
|
/*
|
|
* @description Set the boot device of a specified node
|
|
*
|
|
* @param {object} node - node object
|
|
* @return {promise}
|
|
*/
|
|
function setBootDevice(node) {
|
|
var promise;
|
|
var options = {
|
|
controller: "BootDeviceController as ctrl",
|
|
backdrop: 'static',
|
|
resolve: {
|
|
node: function() {
|
|
return node;
|
|
}
|
|
},
|
|
templateUrl: basePath + '/bootdevice/bootdevice.html'
|
|
};
|
|
promise = $uibModal.open(options).result.then(
|
|
function(result) {
|
|
return ironic.nodeSetBootDevice(node.uuid,
|
|
result.device,
|
|
result.persistent);
|
|
});
|
|
return promise;
|
|
}
|
|
}
|
|
})();
|