-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0be9a13
commit 9130205
Showing
13 changed files
with
927 additions
and
230 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
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
56 changes: 56 additions & 0 deletions
56
pkg/agent/sysadvisor/plugin/qosaware/resource/helper/helper.go
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,56 @@ | ||
/* | ||
Copyright 2022 The Katalyst 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 helper | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"k8s.io/apimachinery/pkg/api/errors" | ||
|
||
"github.com/kubewharf/katalyst-core/pkg/metaserver" | ||
) | ||
|
||
// PodEnableReclaim checks whether the pod can be reclaimed, | ||
// if node does not enable reclaim, it will return false directly, | ||
// if node enable reclaim, it will check whether the pod is degraded. | ||
func PodEnableReclaim(ctx context.Context, metaServer *metaserver.MetaServer, | ||
podUID string, nodeEnableReclaim bool) (bool, error) { | ||
if !nodeEnableReclaim { | ||
return false, nil | ||
} | ||
|
||
if metaServer == nil { | ||
return false, fmt.Errorf("metaServer is nil") | ||
} | ||
|
||
pod, err := metaServer.GetPod(ctx, podUID) | ||
if err != nil { | ||
return false, err | ||
} | ||
|
||
// check whether the pod is degraded | ||
degraded, err := metaServer.ServiceBusinessPerformanceDegraded(ctx, pod) | ||
if err != nil && !errors.IsNotFound(err) { | ||
return false, err | ||
} else if err != nil { | ||
return true, nil | ||
} | ||
|
||
// if pod is degraded, it can not be reclaimed | ||
return !degraded, nil | ||
} |
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
Oops, something went wrong.