forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoscaler.js
216 lines (191 loc) · 7.68 KB
/
autoscaler.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
'use strict';
/**
* @ngdoc function
* @name openshiftConsole.controller:EditAutoscalerController
* @description
* # EditAutoscalerController
* Controller of the openshiftConsole
*/
angular.module('openshiftConsole')
.controller('EditAutoscalerController',
function ($scope,
$filter,
$routeParams,
$window,
APIService,
AuthorizationService,
BreadcrumbsService,
DataService,
HPAService,
MetricsService,
Navigate,
ProjectsService,
keyValueEditorUtils) {
if (!$routeParams.kind || !$routeParams.name) {
Navigate.toErrorPage("Kind or name parameter missing.");
return;
}
var supportedKinds = [
'Deployment',
'DeploymentConfig',
'HorizontalPodAutoscaler',
'ReplicaSet',
'ReplicationController'
];
if (!_.includes(supportedKinds, $routeParams.kind)) {
Navigate.toErrorPage("Autoscaling not supported for kind " + $routeParams.kind + ".");
return;
}
$scope.kind = $routeParams.kind;
$scope.name = $routeParams.name;
if ($routeParams.kind === "HorizontalPodAutoscaler") {
// Wait for the HPA data to load before enabling the form controls.
// This is only necessary when editing an existing HPA.
$scope.disableInputs = true;
} else {
$scope.targetKind = $routeParams.kind;
$scope.targetName = $routeParams.name;
}
$scope.autoscaling = {
name: $scope.name
};
$scope.labels = [];
// Warn if metrics aren't configured when setting autoscaling options.
MetricsService.isAvailable().then(function(available) {
$scope.metricsWarning = !available;
});
$scope.alerts = {};
var getErrorDetails = $filter('getErrorDetails');
var displayError = function(errorMessage, result) {
$scope.alerts['autoscaling'] = {
type: "error",
message: errorMessage,
details: getErrorDetails(result)
};
};
ProjectsService
.get($routeParams.project)
.then(_.spread(function(project, context) {
// Update project breadcrumb with display name.
$scope.project = project;
var verb = $routeParams.kind === 'HorizontalPodAutoscaler' ? 'update' : 'create';
if (!AuthorizationService.canI({ resource: 'horizontalpodautoscalers', group: 'extensions' }, verb, $routeParams.project)) {
Navigate.toErrorPage('You do not have authority to ' + verb + ' horizontal pod autoscalers in project ' + $routeParams.project + '.', 'access_denied');
return;
}
var createHPA = function() {
$scope.disableInputs = true;
var hpa = {
apiVersion: "extensions/v1beta1",
kind: "HorizontalPodAutoscaler",
metadata: {
name: $scope.autoscaling.name,
labels: keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels))
},
spec: {
scaleRef: {
kind: $routeParams.kind,
name: $routeParams.name,
apiVersion: "extensions/v1beta1",
subresource: "scale"
},
minReplicas: $scope.autoscaling.minReplicas,
maxReplicas: $scope.autoscaling.maxReplicas,
cpuUtilization: {
targetPercentage: $scope.autoscaling.targetCPU || $scope.autoscaling.defaultTargetCPU
}
}
};
DataService.create({
resource: 'horizontalpodautoscalers',
group: 'extensions'
}, null, hpa, context)
.then(function() { // Success
// Return to the previous page
$window.history.back();
}, function(result) { // Failure
$scope.disableInputs = false;
displayError('An error occurred creating the horizontal pod autoscaler.', result);
});
};
var updateHPA = function(hpa) {
$scope.disableInputs = true;
hpa = angular.copy(hpa);
hpa.metadata.labels = keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels));
hpa.spec.minReplicas = $scope.autoscaling.minReplicas;
hpa.spec.maxReplicas = $scope.autoscaling.maxReplicas;
hpa.spec.cpuUtilization = {
targetPercentage: $scope.autoscaling.targetCPU || $scope.autoscaling.defaultTargetCPU
};
DataService.update({
resource: 'horizontalpodautoscalers',
group: 'extensions'
}, hpa.metadata.name, hpa, context)
.then(function() { // Success
// Return to the previous page
$window.history.back();
}, function(result) { // Failure
$scope.disableInputs = false;
displayError('An error occurred updating horizontal pod autoscaler "' + hpa.metadata.name + '".', result);
});
};
var resourceGroup = {
resource: APIService.kindToResource($routeParams.kind),
group: $routeParams.group
};
DataService.get(resourceGroup, $routeParams.name, context).then(function(resource) {
$scope.labels = _.map(
_.get(resource, 'metadata.labels', {}),
function(val, key) {
return {
name: key,
value: val
};
});
// Are we editing an existing HPA?
if ($routeParams.kind === "HorizontalPodAutoscaler") {
$scope.targetKind = _.get(resource, 'spec.scaleRef.kind');
$scope.targetName = _.get(resource, 'spec.scaleRef.name');
_.assign($scope.autoscaling, {
minReplicas: _.get(resource, 'spec.minReplicas'),
maxReplicas: _.get(resource, 'spec.maxReplicas'),
targetCPU: _.get(resource, 'spec.cpuUtilization.targetPercentage')
});
$scope.disableInputs = false;
// Update the existing HPA.
$scope.save = function() {
updateHPA(resource);
};
// Build the breadcrumb for the target resource. (HPAs don't have a dedicated page.)
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({
name: $scope.targetName,
kind: $scope.targetKind,
namespace: $routeParams.project,
project: project,
subpage: 'Autoscale',
includeProject: true
});
} else {
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({
object: resource,
project: project,
subpage: 'Autoscale',
includeProject: true
});
// Create a new HPA.
$scope.save = createHPA;
var limitRanges = {};
var checkCPURequest = function() {
var containers = _.get(resource, 'spec.template.spec.containers', []);
$scope.showCPURequestWarning = !HPAService.hasCPURequest(containers, limitRanges, project);
};
// List limit ranges in this project to determine if there is a default
// CPU request for autoscaling.
DataService.list("limitranges", context).then(function(resp) {
limitRanges = resp.by("metadata.name");
checkCPURequest();
});
}
});
}));
});