1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

feat(volumes): check if volumes are used in service definitions (#1601)

This commit is contained in:
Anthony Lapenna 2018-01-25 08:13:56 +01:00 committed by GitHub
parent 672819f3af
commit f31f29fa2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 3 deletions

View file

@ -1,6 +1,6 @@
angular.module('volumes', [])
.controller('VolumesController', ['$q', '$scope', '$state', 'VolumeService', 'Notifications',
function ($q, $scope, $state, VolumeService, Notifications) {
.controller('VolumesController', ['$q', '$scope', '$state', 'VolumeService', 'ServiceService', 'VolumeHelper', 'Notifications',
function ($q, $scope, $state, VolumeService, ServiceService, VolumeHelper, Notifications) {
$scope.removeAction = function (selectedItems) {
var actionCount = selectedItems.length;
@ -24,16 +24,24 @@ function ($q, $scope, $state, VolumeService, Notifications) {
};
function initView() {
var endpointProvider = $scope.applicationState.endpoint.mode.provider;
var endpointRole = $scope.applicationState.endpoint.mode.role;
$q.all({
attached: VolumeService.volumes({ filters: { 'dangling': ['false'] } }),
dangling: VolumeService.volumes({ filters: { 'dangling': ['true'] } })
dangling: VolumeService.volumes({ filters: { 'dangling': ['true'] } }),
services: endpointProvider === 'DOCKER_SWARM_MODE' && endpointRole === 'MANAGER' ? ServiceService.services() : []
})
.then(function success(data) {
var services = data.services;
$scope.volumes = data.attached.map(function(volume) {
volume.dangling = false;
return volume;
}).concat(data.dangling.map(function(volume) {
volume.dangling = true;
if (VolumeHelper.isVolumeUsedByAService(volume, services)) {
volume.dangling = false;
}
return volume;
}));
}).catch(function error(err) {