forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattachPVC.js
190 lines (167 loc) · 6.84 KB
/
attachPVC.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
'use strict';
/**
* @ngdoc function
* @name openshiftConsole.controller:AttachPVCController
* @description
* # CreateRouteController
* Controller of the openshiftConsole
*/
angular.module('openshiftConsole')
.controller('AttachPVCController',
function($filter,
$routeParams,
$scope,
$window,
APIService,
AuthorizationService,
BreadcrumbsService,
DataService,
Navigate,
ProjectsService,
StorageService,
RELATIVE_PATH_PATTERN) {
if (!$routeParams.kind || !$routeParams.name) {
Navigate.toErrorPage("Kind or name parameter missing.");
return;
}
var supportedKinds = [
'Deployment',
'DeploymentConfig',
'ReplicaSet',
'ReplicationController'
];
if (!_.includes(supportedKinds, $routeParams.kind)) {
Navigate.toErrorPage("Storage is not supported for kind " + $routeParams.kind + ".");
return;
}
var resourceGroupVersion = {
resource: APIService.kindToResource($routeParams.kind),
group: $routeParams.group
};
$scope.alerts = {};
$scope.renderOptions = {
hideFilterWidget: true
};
$scope.projectName = $routeParams.project;
$scope.kind = $routeParams.kind;
$scope.name = $routeParams.name;
$scope.RELATIVE_PATH_PATTERN = RELATIVE_PATH_PATTERN;
$scope.attach = {
persistentVolumeClaim: null,
volumeName: null,
mountPath: null,
allContainers: true,
containers: {}
};
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({
name: $routeParams.name,
kind: $routeParams.kind,
namespace: $routeParams.project,
subpage: 'Add Storage',
includeProject: true
});
ProjectsService
.get($routeParams.project)
.then(_.spread(function(project, context) {
$scope.project = project;
// Update project breadcrumb with display name.
$scope.breadcrumbs[0].title = $filter('displayName')(project);
if (!AuthorizationService.canI(resourceGroupVersion, 'update', $routeParams.project)) {
Navigate.toErrorPage('You do not have authority to update ' +
$filter('humanizeKind')($routeParams.kind) + ' ' + $routeParams.name + '.', 'access_denied');
return;
}
var orderByDisplayName = $filter('orderByDisplayName');
var getErrorDetails = $filter('getErrorDetails');
var generateName = $filter('generateName');
var displayError = function(errorMessage, errorDetails) {
$scope.disableInputs = true;
$scope.alerts['attach-persistent-volume-claim'] = {
type: "error",
message: errorMessage,
details: errorDetails
};
};
var isContainerSelected = function(container) {
return $scope.attach.allContainers || $scope.attach.containers[container.name];
};
// Look at the existing mount paths so that we can warn if the new value is not unique.
var updateMountPaths = function() {
var podTemplate = _.get($scope, 'attach.resource.spec.template');
$scope.existingMountPaths = StorageService.getMountPaths(podTemplate, isContainerSelected);
};
$scope.$watchGroup(['attach.resource', 'attach.allContainers'], updateMountPaths);
$scope.$watch('attach.containers', updateMountPaths, true);
// load resources required to show the page (list of pvcs and deployment or deployment config)
var load = function() {
DataService.get(resourceGroupVersion, $routeParams.name, context).then(
function(resource) {
$scope.attach.resource = resource;
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({
object: resource,
project: project,
subpage: 'Add Storage',
includeProject: true
});
var podTemplate = _.get(resource, 'spec.template');
$scope.existingVolumeNames = StorageService.getVolumeNames(podTemplate);
},
function(e) {
displayError($routeParams.name + " could not be loaded.", getErrorDetails(e));
}
);
DataService.list("persistentvolumeclaims", context).then(function(pvcs) {
$scope.pvcs = orderByDisplayName(pvcs.by("metadata.name"));
if (!_.isEmpty($scope.pvcs) && !$scope.attach.persistentVolumeClaim) {
$scope.attach.persistentVolumeClaim = _.head($scope.pvcs);
}
});
};
load();
$scope.attachPVC = function() {
$scope.disableInputs = true;
if ($scope.attachPVCForm.$valid) {
// generate a volume name if not provided
if (!$scope.attach.volumeName) {
$scope.attach.volumeName = generateName("volume-");
}
var resource = $scope.attach.resource;
var podTemplate = _.get(resource, 'spec.template');
var persistentVolumeClaim = $scope.attach.persistentVolumeClaim;
var name = $scope.attach.volumeName;
var mountPath = $scope.attach.mountPath;
var subPath = $scope.attach.subPath;
var readOnly = $scope.attach.readOnly;
if (mountPath) {
// for each container in the pod spec, add the new volume mount
angular.forEach(podTemplate.spec.containers, function(container) {
if (isContainerSelected(container)) {
var newVolumeMount =
StorageService.createVolumeMount(name, mountPath, subPath, readOnly);
if (!container.volumeMounts) {
container.volumeMounts = [];
}
container.volumeMounts.push(newVolumeMount);
}
});
}
// add the new volume to the pod template
var newVolume = StorageService.createVolume(name, persistentVolumeClaim);
if (!podTemplate.spec.volumes) {
podTemplate.spec.volumes = [];
}
podTemplate.spec.volumes.push(newVolume);
$scope.alerts = {};
DataService.update(resourceGroupVersion, resource.metadata.name, $scope.attach.resource, context).then(
function() {
$window.history.back();
},
function(result) {
displayError("An error occurred attaching the persistent volume claim to the " + $filter('humanizeKind')($routeParams.kind) + ".", getErrorDetails(result));
$scope.disableInputs = false;
}
);
}
};
}));
});