-
Notifications
You must be signed in to change notification settings - Fork 768
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: define vertically updated interfaces for different implemen…
…tations Signed-off-by: LavenderQAQ <lavenderqaq.cs@gmail.com>
- Loading branch information
1 parent
af9fa34
commit aca435f
Showing
5 changed files
with
94 additions
and
15 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,76 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package inplaceupdate | ||
|
||
import ( | ||
appspub "github.com/openkruise/kruise/apis/apps/pub" | ||
v1 "k8s.io/api/core/v1" | ||
) | ||
|
||
// For In-place workload vertical scaling | ||
type VerticalUpdateInterface interface { | ||
// Pass in the container to be modified and the expected resource values, | ||
// as well as the information for the entire pod for compatibility with some internal vertical scaling implementations | ||
UpdateResource(pod *v1.Pod, container *v1.Container, resource *v1.ResourceRequirements) | ||
// To determine whether the container has been successfully vertical updated, | ||
// pass in the expected resources of the container and its current status, | ||
// as well as the information for the entire pod for compatibility with some internal vertical scaling implementations | ||
IsUpdateCompleted(pod *v1.Pod, containerResources *map[string]v1.ResourceRequirements, containerStatuses *map[string]appspub.InPlaceUpdateContainerStatus) bool | ||
} | ||
|
||
var verticalUpdateOperator VerticalUpdateInterface = nil | ||
|
||
// To register vertical update operations, | ||
// you can register different vertical update implementations here | ||
func registerVerticalUpdate() { | ||
if verticalUpdateOperator == nil { | ||
verticalUpdateOperator = &VerticalUpdate{} | ||
} | ||
} | ||
|
||
// VerticalUpdate represents the vertical scaling of k8s standard | ||
type VerticalUpdate struct{} | ||
|
||
// UpdateResource implements vertical updates by directly modifying the container's resources, | ||
// conforming to the k8s community standard | ||
func (v *VerticalUpdate) UpdateResource(pod *v1.Pod, container *v1.Container, newResource *v1.ResourceRequirements) { | ||
for key, quantity := range newResource.Limits { | ||
container.Resources.Limits[key] = quantity | ||
} | ||
for key, quantity := range newResource.Requests { | ||
container.Resources.Requests[key] = quantity | ||
} | ||
} | ||
|
||
// IsUpdateCompleted directly determines whether the current container is vertically updated by the spec and status of the container, | ||
// which conforms to the k8s community standard | ||
func (v *VerticalUpdate) IsUpdateCompleted(pod *v1.Pod, containerResources *map[string]v1.ResourceRequirements, containerStatuses *map[string]appspub.InPlaceUpdateContainerStatus) bool { | ||
return true | ||
} | ||
|
||
// Can access different pod vertical scaling implementations with the community | ||
// type VerticalUpdateInternal struct{} | ||
|
||
// func (v *VerticalUpdateInternal) GetResourceInStatus(pod *v1.Pod) *v1.ResourceRequirements { | ||
// return nil | ||
// } | ||
|
||
// func (v *VerticalUpdateInternal) GetResourceInSpec(pod *v1.Pod) *v1.ResourceRequirements { | ||
// return nil | ||
// } | ||
|
||
// func (v *VerticalUpdateInternal) SetResourceInSpec(pod *v1.Pod, res *v1.ResourceRequirements) {} |