
Add containers panel into admin dashboard with actions that restricted for admin. In details view, admin should not see logs tab and console tab. Allowed actions for admin - update - rebuild - start / stop / restart - kill - delete with force Not allowed actions for admin - create - manage security group - pause / unpause - execute - delete - delete with stop Not allowed view for admin - logs tab on details view - console tab on details view To enable containers panel for admin, copy following[1] into horizon's enabled folder[2]. [1] zun_ui/enabled/_2333_admin_container_containers_panel.py [2] openstack_dashboard/local/enabled/ Change-Id: I1f96464b0103e099bd58bc2889087e1b55f4ed97 Implement: blueprint add-admin-containers-panel
87 lines
2.5 KiB
JavaScript
87 lines
2.5 KiB
JavaScript
/**
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
* not use self 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 factory
|
|
* @name horizon.dashboard.container.containers.unpause.service
|
|
* @Description
|
|
* unpause container.
|
|
*/
|
|
angular
|
|
.module('horizon.dashboard.container.containers')
|
|
.factory('horizon.dashboard.container.containers.unpause.service', unpauseService);
|
|
|
|
unpauseService.$inject = [
|
|
'$q',
|
|
'horizon.app.core.openstack-service-api.zun',
|
|
'horizon.dashboard.container.containers.adminActions',
|
|
'horizon.dashboard.container.containers.resourceType',
|
|
'horizon.dashboard.container.containers.validStates',
|
|
'horizon.framework.util.actions.action-result.service',
|
|
'horizon.framework.util.q.extensions',
|
|
'horizon.framework.widgets.toast.service'
|
|
];
|
|
|
|
function unpauseService(
|
|
$q, zun, adminActions, resourceType, validStates, actionResult, $qExtensions, toast
|
|
) {
|
|
|
|
var message = {
|
|
success: gettext('Container %s was successfully unpaused.')
|
|
};
|
|
|
|
var service = {
|
|
initAction: initAction,
|
|
allowed: allowed,
|
|
perform: perform
|
|
};
|
|
|
|
return service;
|
|
|
|
//////////////
|
|
|
|
// include this function in your service
|
|
// if you plan to emit events to the parent controller
|
|
function initAction() {
|
|
}
|
|
|
|
function allowed(container) {
|
|
var adminAction = true;
|
|
if (zun.isAdmin()) {
|
|
adminAction = adminActions.indexOf("unpause") >= 0;
|
|
}
|
|
return $q.all([
|
|
$qExtensions.booleanAsPromise(adminAction),
|
|
$qExtensions.booleanAsPromise(
|
|
validStates.unpause.indexOf(container.status) >= 0
|
|
)
|
|
]);
|
|
}
|
|
|
|
function perform(selected) {
|
|
// unpause selected container
|
|
return zun.unpauseContainer(selected.id).then(success);
|
|
|
|
function success() {
|
|
toast.add('success', interpolate(message.success, [selected.name]));
|
|
var result = actionResult.getActionResult().updated(resourceType, selected.id);
|
|
return result.result;
|
|
}
|
|
}
|
|
}
|
|
})();
|