Skip to content

Commit 170e153

Browse files
Merge pull request #2776 from spadgett/hpa-scale-target
Automatic merge from submit-queue. Bug 1540916: Set correct group and version in HPA scale target Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1540916 I had to move the function inside the data service callback, so the diff is larger than it looks. This changes the HPA scale target to use the correct group/version for the resource being scaled. /assign @jwforres /cc @DirectXMan12
2 parents 76a44ff + 632b015 commit 170e153

File tree

2 files changed

+80
-82
lines changed

2 files changed

+80
-82
lines changed

app/scripts/controllers/edit/autoscaler.js

+41-42
Original file line numberDiff line numberDiff line change
@@ -91,48 +91,6 @@ angular.module('openshiftConsole')
9191
return;
9292
}
9393

94-
var createHPA = function() {
95-
$scope.disableInputs = true;
96-
hideErrorNotifications();
97-
var hpa = {
98-
apiVersion: "autoscaling/v1",
99-
kind: "HorizontalPodAutoscaler",
100-
metadata: {
101-
name: $scope.autoscaling.name,
102-
labels: keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels))
103-
},
104-
spec: {
105-
scaleTargetRef: {
106-
kind: $routeParams.kind,
107-
name: $routeParams.name,
108-
apiVersion: "extensions/v1beta1",
109-
subresource: "scale"
110-
},
111-
minReplicas: $scope.autoscaling.minReplicas,
112-
maxReplicas: $scope.autoscaling.maxReplicas,
113-
targetCPUUtilizationPercentage: $scope.autoscaling.targetCPU
114-
}
115-
};
116-
117-
DataService.create(horizontalPodAutoscalerVersion, null, hpa, context)
118-
.then(function(hpa) { // Success
119-
NotificationsService.addNotification({
120-
type: 'success',
121-
message: 'Horizontal pod autoscaler ' + hpa.metadata.name + ' successfully created.'
122-
});
123-
124-
navigateBack();
125-
}, function(result) { // Failure
126-
$scope.disableInputs = false;
127-
NotificationsService.addNotification({
128-
id: 'edit-hpa-error',
129-
type: 'error',
130-
message: 'An error occurred creating the horizontal pod autoscaler.',
131-
details: getErrorDetails(result)
132-
});
133-
});
134-
};
135-
13694
var updateHPA = function(hpa) {
13795
$scope.disableInputs = true;
13896

@@ -178,6 +136,47 @@ angular.module('openshiftConsole')
178136
}
179137

180138
DataService.get(resourceGroup, $routeParams.name, context).then(function(resource) {
139+
var createHPA = function() {
140+
$scope.disableInputs = true;
141+
hideErrorNotifications();
142+
var hpa = {
143+
apiVersion: "autoscaling/v1",
144+
kind: "HorizontalPodAutoscaler",
145+
metadata: {
146+
name: $scope.autoscaling.name,
147+
labels: keyValueEditorUtils.mapEntries(keyValueEditorUtils.compactEntries($scope.labels))
148+
},
149+
spec: {
150+
scaleTargetRef: {
151+
kind: resource.kind,
152+
name: resource.metadata.name,
153+
apiVersion: resource.apiVersion
154+
},
155+
minReplicas: $scope.autoscaling.minReplicas,
156+
maxReplicas: $scope.autoscaling.maxReplicas,
157+
targetCPUUtilizationPercentage: $scope.autoscaling.targetCPU
158+
}
159+
};
160+
161+
DataService.create(horizontalPodAutoscalerVersion, null, hpa, context)
162+
.then(function(hpa) { // Success
163+
NotificationsService.addNotification({
164+
type: 'success',
165+
message: 'Horizontal pod autoscaler ' + hpa.metadata.name + ' successfully created.'
166+
});
167+
168+
navigateBack();
169+
}, function(result) { // Failure
170+
$scope.disableInputs = false;
171+
NotificationsService.addNotification({
172+
id: 'edit-hpa-error',
173+
type: 'error',
174+
message: 'An error occurred creating the horizontal pod autoscaler.',
175+
details: getErrorDetails(result)
176+
});
177+
});
178+
};
179+
181180
$scope.labels = _.map(
182181
_.get(resource, 'metadata.labels', {}),
183182
function(val, key) {

dist/scripts/scripts.js

+39-40
Original file line numberDiff line numberDiff line change
@@ -7645,41 +7645,7 @@ if (o.canI({
76457645
resource: "horizontalpodautoscalers",
76467646
group: "autoscaling"
76477647
}, l, n.project)) {
7648-
var m = function() {
7649-
e.disableInputs = !0, h();
7650-
var t = {
7651-
apiVersion: "autoscaling/v1",
7652-
kind: "HorizontalPodAutoscaler",
7653-
metadata: {
7654-
name: e.autoscaling.name,
7655-
labels: p.mapEntries(p.compactEntries(e.labels))
7656-
},
7657-
spec: {
7658-
scaleTargetRef: {
7659-
kind: n.kind,
7660-
name: n.name,
7661-
apiVersion: "extensions/v1beta1",
7662-
subresource: "scale"
7663-
},
7664-
minReplicas: e.autoscaling.minReplicas,
7665-
maxReplicas: e.autoscaling.maxReplicas,
7666-
targetCPUUtilizationPercentage: e.autoscaling.targetCPU
7667-
}
7668-
};
7669-
s.create(y, null, t, r).then(function(e) {
7670-
d.addNotification({
7671-
type: "success",
7672-
message: "Horizontal pod autoscaler " + e.metadata.name + " successfully created."
7673-
}), v();
7674-
}, function(t) {
7675-
e.disableInputs = !1, d.addNotification({
7676-
id: "edit-hpa-error",
7677-
type: "error",
7678-
message: "An error occurred creating the horizontal pod autoscaler.",
7679-
details: g(t)
7680-
});
7681-
});
7682-
}, f = function(t) {
7648+
var m = function(t) {
76837649
e.disableInputs = !0, (t = angular.copy(t)).metadata.labels = p.mapEntries(p.compactEntries(e.labels)), t.spec.minReplicas = e.autoscaling.minReplicas, t.spec.maxReplicas = e.autoscaling.maxReplicas, t.spec.targetCPUUtilizationPercentage = e.autoscaling.targetCPU, s.update(y, t.metadata.name, t, r).then(function(e) {
76847650
d.addNotification({
76857651
type: "success",
@@ -7693,15 +7659,15 @@ message: "An error occurred creating the horizontal pod autoscaler.",
76937659
details: g(t)
76947660
});
76957661
});
7696-
}, S = {};
7697-
S = "HorizontalPodAutoscaler" === n.kind ? {
7662+
}, f = {};
7663+
f = "HorizontalPodAutoscaler" === n.kind ? {
76987664
resource: "horizontalpodautoscalers",
76997665
group: "autoscaling",
77007666
version: "v1"
77017667
} : {
77027668
resource: a.kindToResource(n.kind),
77037669
group: n.group
7704-
}, s.get(S, n.name, r).then(function(a) {
7670+
}, s.get(f, n.name, r).then(function(a) {
77057671
if (e.labels = _.map(_.get(a, "metadata.labels", {}), function(e, t) {
77067672
return {
77077673
name: t,
@@ -7712,7 +7678,7 @@ minReplicas: _.get(a, "spec.minReplicas"),
77127678
maxReplicas: _.get(a, "spec.maxReplicas"),
77137679
targetCPU: _.get(a, "spec.targetCPUUtilizationPercentage")
77147680
}), e.disableInputs = !1, e.save = function() {
7715-
f(a);
7681+
m(a);
77167682
}, e.breadcrumbs = i.getBreadcrumbs({
77177683
name: e.targetName,
77187684
kind: e.targetKind,
@@ -7724,7 +7690,40 @@ e.breadcrumbs = i.getBreadcrumbs({
77247690
object: a,
77257691
project: t,
77267692
subpage: "Autoscale"
7727-
}), e.save = m;
7693+
}), e.save = function() {
7694+
e.disableInputs = !0, h();
7695+
var t = {
7696+
apiVersion: "autoscaling/v1",
7697+
kind: "HorizontalPodAutoscaler",
7698+
metadata: {
7699+
name: e.autoscaling.name,
7700+
labels: p.mapEntries(p.compactEntries(e.labels))
7701+
},
7702+
spec: {
7703+
scaleTargetRef: {
7704+
kind: a.kind,
7705+
name: a.metadata.name,
7706+
apiVersion: a.apiVersion
7707+
},
7708+
minReplicas: e.autoscaling.minReplicas,
7709+
maxReplicas: e.autoscaling.maxReplicas,
7710+
targetCPUUtilizationPercentage: e.autoscaling.targetCPU
7711+
}
7712+
};
7713+
s.create(y, null, t, r).then(function(e) {
7714+
d.addNotification({
7715+
type: "success",
7716+
message: "Horizontal pod autoscaler " + e.metadata.name + " successfully created."
7717+
}), v();
7718+
}, function(t) {
7719+
e.disableInputs = !1, d.addNotification({
7720+
id: "edit-hpa-error",
7721+
type: "error",
7722+
message: "An error occurred creating the horizontal pod autoscaler.",
7723+
details: g(t)
7724+
});
7725+
});
7726+
};
77287727
var o = {}, l = function() {
77297728
var n = _.get(a, "spec.template.spec.containers", []);
77307729
e.showCPURequestWarning = !c.hasCPURequest(n, o, t);

0 commit comments

Comments
 (0)