Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(k8s): add scaledown unneeded time #385

Merged
merged 1 commit into from
Apr 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions api/k8s/v1/k8s_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,8 @@ type ClusterAutoscalerConfig struct {
//
// Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they don't cause scale up. Pods with null priority (PodPriority disabled) are non expendable.
ExpendablePodsPriorityCutoff int32 `json:"expendable_pods_priority_cutoff"`
// ScaleDownUnneededTime: how long a node should be unneeded before it is eligible for scale down
ScaleDownUnneededTime string `json:"scale_down_unneeded_time"`
}

// CreateClusterRequestAutoUpgrade: create cluster request. auto upgrade
Expand Down Expand Up @@ -651,6 +653,8 @@ type CreateClusterRequestAutoscalerConfig struct {
//
// Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they don't cause scale up. Pods with null priority (PodPriority disabled) are non expendable.
ExpendablePodsPriorityCutoff *int32 `json:"expendable_pods_priority_cutoff"`
// ScaleDownUnneededTime: how long a node should be unneeded before it is eligible for scale down
ScaleDownUnneededTime *string `json:"scale_down_unneeded_time"`
}

// CreateClusterRequestPoolConfig: create cluster request. pool config
Expand Down Expand Up @@ -838,6 +842,8 @@ type UpdateClusterRequestAutoscalerConfig struct {
//
// Pods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they don't cause scale up. Pods with null priority (PodPriority disabled) are non expendable.
ExpendablePodsPriorityCutoff *int32 `json:"expendable_pods_priority_cutoff"`
// ScaleDownUnneededTime: how long a node should be unneeded before it is eligible for scale down
ScaleDownUnneededTime *string `json:"scale_down_unneeded_time"`
}

// Version: version
Expand Down