Skip to content

Commit

Permalink
fix - rightsizing rule boundaries changed form lower, upper -> min, max
Browse files Browse the repository at this point in the history
  • Loading branch information
shirbur committed Jun 20, 2024
1 parent de06ff6 commit e0cedcc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ properties:
cpu:
type: object
properties:
lower:
min:
type: integer
description: the lower cpu in vCpu
example: 0
upper:
max:
type: integer
description: the upper cpu in vCpu
example: 100
memory:
type: object
properties:
lower:
min:
type: integer
description: the lower memory in Gib
minimum: 0
example: 1
upper:
max:
type: integer
description: the upper memory in Gib
minimum: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,11 @@ title: Ocean Rightsizing Rule Recommendation Application Overhead Values
description: >
Determines the Ocean Rightsizing rule recommendation application overhead values
properties:
cpu:
type: object
properties:
lower:
type: integer
example: 0
upper:
type: integer
example: 100
memory:
type: object
properties:
lower:
type: integer
minimum: 0
example: 1
upper:
type: integer
minimum: 0
example: 80
cpuPercentage:
type: number
minimum: 0
example: 0.8
memoryPercentage:
type: number
minimum: 0
example: 0.5

0 comments on commit e0cedcc

Please sign in to comment.