@@ -7645,41 +7645,7 @@ if (o.canI({
7645
7645
resource: "horizontalpodautoscalers",
7646
7646
group: "autoscaling"
7647
7647
}, 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) {
7683
7649
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) {
7684
7650
d.addNotification({
7685
7651
type: "success",
@@ -7693,15 +7659,15 @@ message: "An error occurred creating the horizontal pod autoscaler.",
7693
7659
details: g(t)
7694
7660
});
7695
7661
});
7696
- }, S = {};
7697
- S = "HorizontalPodAutoscaler" === n.kind ? {
7662
+ }, f = {};
7663
+ f = "HorizontalPodAutoscaler" === n.kind ? {
7698
7664
resource: "horizontalpodautoscalers",
7699
7665
group: "autoscaling",
7700
7666
version: "v1"
7701
7667
} : {
7702
7668
resource: a.kindToResource(n.kind),
7703
7669
group: n.group
7704
- }, s.get(S , n.name, r).then(function(a) {
7670
+ }, s.get(f , n.name, r).then(function(a) {
7705
7671
if (e.labels = _.map(_.get(a, "metadata.labels", {}), function(e, t) {
7706
7672
return {
7707
7673
name: t,
@@ -7712,7 +7678,7 @@ minReplicas: _.get(a, "spec.minReplicas"),
7712
7678
maxReplicas: _.get(a, "spec.maxReplicas"),
7713
7679
targetCPU: _.get(a, "spec.targetCPUUtilizationPercentage")
7714
7680
}), e.disableInputs = !1, e.save = function() {
7715
- f (a);
7681
+ m (a);
7716
7682
}, e.breadcrumbs = i.getBreadcrumbs({
7717
7683
name: e.targetName,
7718
7684
kind: e.targetKind,
@@ -7724,7 +7690,40 @@ e.breadcrumbs = i.getBreadcrumbs({
7724
7690
object: a,
7725
7691
project: t,
7726
7692
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
+ };
7728
7727
var o = {}, l = function() {
7729
7728
var n = _.get(a, "spec.template.spec.containers", []);
7730
7729
e.showCPURequestWarning = !c.hasCPURequest(n, o, t);
0 commit comments