-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update API definitions and responses to reflect cluster_autoscaler_co…
…nfiguration support (#960) * Update API definitions and responses to reflect cluster_autoscaler_configuration support * Fix type float * Undo linter * Fix casing --------- Co-authored-by: Andrew Starr-Bochicchio <andrewsomething@users.noreply.github.com>
- Loading branch information
1 parent
fb3c013
commit 8fa63db
Showing
4 changed files
with
48 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
specification/resources/kubernetes/models/cluster_autoscaler_configuration.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
type: object | ||
nullable: true | ||
description: An object specifying custom cluster autoscaler configuration. | ||
properties: | ||
scale_down_utilization_threshold: | ||
type: number | ||
description: Used to customize when cluster autoscaler scales down non-empty nodes by setting the node utilization threshold. | ||
example: 0.65 | ||
|
||
scale_down_unneeded_time: | ||
type: string | ||
description: Used to customize how long a node is unneeded before being scaled down. | ||
example: "1m0s" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters