generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from Gekko0114/postfilter
support postfilter plugin
- Loading branch information
Showing
30 changed files
with
574 additions
and
59 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
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,22 @@ | ||
//go:build tinygo.wasm | ||
|
||
/* | ||
Copyright 2023 The Kubernetes 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 postfilter | ||
|
||
//go:wasmimport k8s.io/scheduler result.nominated_node_name | ||
func setNominatedNodeNameResult(ptr, size uint32) |
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,22 @@ | ||
//go:build !tinygo.wasm | ||
|
||
/* | ||
Copyright 2023 The Kubernetes 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 postfilter | ||
|
||
// setNominatedNodeNameResult is stubbed for compilation outside TinyGo. | ||
func setNominatedNodeNameResult(uint32, uint32) {} |
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,100 @@ | ||
/* | ||
Copyright 2023 The Kubernetes 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 postfilter exports an api.PostFilterPlugin to the host. | ||
package postfilter | ||
|
||
import ( | ||
"runtime" | ||
|
||
"sigs.k8s.io/kube-scheduler-wasm-extension/guest/api" | ||
"sigs.k8s.io/kube-scheduler-wasm-extension/guest/internal/cyclestate" | ||
"sigs.k8s.io/kube-scheduler-wasm-extension/guest/internal/imports" | ||
"sigs.k8s.io/kube-scheduler-wasm-extension/guest/internal/mem" | ||
"sigs.k8s.io/kube-scheduler-wasm-extension/guest/internal/plugin" | ||
) | ||
|
||
// postfilter is the current plugin assigned with SetPlugin. | ||
var postfilter api.PostFilterPlugin | ||
|
||
// SetPlugin should be called in `main` to assign an api.PostFilterPlugin | ||
// instance. | ||
// | ||
// For example: | ||
// | ||
// func main() { | ||
// plugin := filterPlugin{} | ||
// postfilter.SetPlugin(plugin) | ||
// filter.SetPlugin(plugin) | ||
// } | ||
// | ||
// type filterPlugin struct{} | ||
// | ||
// func (filterPlugin) PostFilter(state api.CycleState, pod proto.Pod, filteredNodeStatusMap api.NodeToStatus) (int32, status *api.Status) { | ||
// // Write state you need on Filter | ||
// } | ||
// | ||
// func (filterPlugin) Filter(state api.CycleState, pod api.Pod, nodeInfo api.NodeInfo) (status *api.Status) { | ||
// var Filter int32 | ||
// // Derive Filter for the node name using state set on PreFilter! | ||
// return Filter, nil | ||
// } | ||
func SetPlugin(postfilterPlugin api.PostFilterPlugin) { | ||
if postfilterPlugin == nil { | ||
panic("nil postfilterPlugin") | ||
} | ||
postfilter = postfilterPlugin | ||
plugin.MustSet(postfilterPlugin) | ||
} | ||
|
||
// prevent unused lint errors (lint is run with normal go). | ||
var _ func() uint64 = _postfilter | ||
|
||
// _postfilter is only exported to the host. | ||
// | ||
//export postfilter | ||
func _postfilter() uint64 { //nolint | ||
|
||
if postfilter == nil { // Then, the user didn't define one. | ||
// Unlike most plugins we always export postfilter so that we can reset | ||
// the cycle state: return success to avoid no-op overhead. | ||
return 0 | ||
} | ||
|
||
// The parameters passed are lazy with regard to host functions. This means | ||
// a no-op plugin should not have any unmarshal penalty. | ||
nominatedNodeName, nominatingMode, status := postfilter.PostFilter(cyclestate.Values, cyclestate.Pod, &nodeToStatus{}) | ||
ptr, size := mem.StringToPtr(nominatedNodeName) | ||
setNominatedNodeNameResult(ptr, size) | ||
runtime.KeepAlive(nominatedNodeName) // until ptr is no longer needed. | ||
|
||
return (uint64(nominatingMode) << uint64(32)) | uint64(imports.StatusToCode(status)) | ||
} | ||
|
||
type nodeToStatus struct { | ||
statusMap map[string]api.StatusCode | ||
} | ||
|
||
func (n *nodeToStatus) Map() map[string]api.StatusCode { | ||
return n.lazyNodeToStatusMap() | ||
} | ||
|
||
// lazyNodeToStatusMap returns NodeToStatusMap from imports.NodeToStatusMap. | ||
func (n *nodeToStatus) lazyNodeToStatusMap() map[string]api.StatusCode { | ||
nodeMap := imports.NodeToStatusMap() | ||
n.statusMap = nodeMap | ||
return n.statusMap | ||
} |
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
Binary file not shown.
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
Binary file not shown.
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.