forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddConfigVolume.js
233 lines (200 loc) · 7.33 KB
/
addConfigVolume.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
'use strict';
/**
* @ngdoc function
* @name openshiftConsole.controller:AddConfigVolumeController
* @description
* # AddConfigVolumeController
* Controller of the openshiftConsole
*/
angular.module('openshiftConsole')
.controller('AddConfigVolumeController',
function($filter,
$routeParams,
$scope,
$window,
APIService,
BreadcrumbsService,
DataService,
Navigate,
ProjectsService,
StorageService) {
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("Volumes are not supported for kind " + $routeParams.kind + ".");
return;
}
var resourceGroupVersion = {
resource: APIService.kindToResource($routeParams.kind),
group: $routeParams.group
};
$scope.alerts = {};
$scope.projectName = $routeParams.project;
$scope.kind = $routeParams.kind;
$scope.name = $routeParams.name;
$scope.attach = {
allContainers: true,
pickKeys: false
};
$scope.forms = {};
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({
name: $routeParams.name,
kind: $routeParams.kind,
namespace: $routeParams.project,
subpage: 'Add Config Files',
includeProject: true
});
var humanizeKind = $filter('humanizeKind');
$scope.groupByKind = function(object) {
return humanizeKind(object.kind);
};
var resetItems = function() {
// Add an empty item so one appears when the section is first expanded.
_.set($scope, 'attach.items', [{}]);
};
// Clear the items if the source has changed.
$scope.$watch('attach.source', resetItems);
var setDirty = function() {
$scope.forms.addConfigVolumeForm.$setDirty();
};
$scope.addItem = function() {
$scope.attach.items.push({});
setDirty();
};
$scope.removeItem = function(index) {
$scope.attach.items.splice(index, 1);
setDirty();
};
ProjectsService
.get($routeParams.project)
.then(_.spread(function(project, context) {
$scope.project = project;
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
};
};
DataService.get(resourceGroupVersion, $routeParams.name, context, { errorNotification: false }).then(
function(object) {
$scope.targetObject = object;
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({
object: object,
project: project,
subpage: 'Add Config Files',
includeProject: true
});
},
function(e) {
$scope.error = e;
}
);
DataService.list("configmaps", context, null, { errorNotification: false }).then(function(configMapData) {
$scope.configMaps = orderByDisplayName(configMapData.by("metadata.name"));
}, function(e) {
if (e.status === 403) {
$scope.configMaps = [];
return;
}
displayError('Could not load config maps', getErrorDetails(e));
});
DataService.list("secrets", context, null, { errorNotification: false }).then(function(secretData) {
$scope.secrets = orderByDisplayName(secretData.by("metadata.name"));
}, function(e) {
if (e.status === 403) {
$scope.secrets = [];
return;
}
displayError('Could not load secrets', getErrorDetails(e));
});
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, 'targetObject.spec.template');
$scope.existingMountPaths = StorageService.getMountPaths(podTemplate, isContainerSelected);
};
$scope.$watchGroup(['targetObject', 'attach.allContainers'], updateMountPaths);
$scope.$watch('attach.containers', updateMountPaths, true);
// Make sure the path for each item is unique.
var updateItemPaths = function() {
// Call `_.compact` to remove empty values.
var paths = _.map($scope.attach.items, 'path');
$scope.itemPaths = _.compact(paths);
};
$scope.$watch('attach.items', updateItemPaths, true);
$scope.addVolume = function() {
if ($scope.forms.addConfigVolumeForm.$invalid) {
return;
}
var resource = $scope.targetObject;
var source = _.get($scope, 'attach.source');
var podTemplate = _.get(resource, 'spec.template');
var name = generateName('volume-');
var mountPath = _.get($scope, 'attach.mountPath');
var newVolumeMount = {
name: name,
mountPath: mountPath
};
// The volume mount is read-only for secrets.
if (source.kind === 'Secret') {
newVolumeMount.readOnly = true;
}
// For each selected container, add the new volume mount.
_.each(podTemplate.spec.containers, function(container) {
if (isContainerSelected(container)) {
container.volumeMounts = container.volumeMounts || [];
container.volumeMounts.push(newVolumeMount);
}
});
var newVolume = {
name: name
};
var items;
if ($scope.attach.pickKeys) {
items = $scope.attach.items;
}
switch (source.kind) {
case 'ConfigMap':
newVolume.configMap = {
name: source.metadata.name,
items: items
};
break;
case 'Secret':
newVolume.secret = {
secretName: source.metadata.name,
items: items
};
break;
}
podTemplate.spec.volumes = podTemplate.spec.volumes || [];
podTemplate.spec.volumes.push(newVolume);
// Clear any previous alerts.
$scope.alerts = {};
$scope.disableInputs = true;
DataService.update(resourceGroupVersion, resource.metadata.name, $scope.targetObject, 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));
}
);
};
}));
});