Skip to content

Commit

Permalink
fix(server): change hpa metrics value (#1505)
Browse files Browse the repository at this point in the history
  • Loading branch information
0fatal authored Sep 1, 2023
1 parent 212c873 commit c444288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/instance/instance.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ export class InstanceService {
name: 'cpu',
target: {
type: 'Utilization',
averageUtilization: targetCPUUtilizationPercentage,
averageUtilization: targetCPUUtilizationPercentage * 10,
},
},
})
Expand All @@ -501,7 +501,7 @@ export class InstanceService {
name: 'memory',
target: {
type: 'Utilization',
averageUtilization: targetMemoryUtilizationPercentage,
averageUtilization: targetMemoryUtilizationPercentage * 2,
},
},
})
Expand Down

0 comments on commit c444288

Please sign in to comment.