forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
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 kubernetes#77559 from ahg-g/permit-extension-point
Implement the permit extension point in scheduler.
- Loading branch information
Showing
6 changed files
with
496 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* | ||
Copyright 2019 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 v1alpha1 | ||
|
||
import ( | ||
"sync" | ||
|
||
"k8s.io/api/core/v1" | ||
"k8s.io/apimachinery/pkg/types" | ||
) | ||
|
||
// waitingPodsMap a thread-safe map used to maintain pods waiting in the permit phase. | ||
type waitingPodsMap struct { | ||
pods map[types.UID]WaitingPod | ||
mu sync.RWMutex | ||
} | ||
|
||
// newWaitingPodsMap returns a new waitingPodsMap. | ||
func newWaitingPodsMap() *waitingPodsMap { | ||
return &waitingPodsMap{ | ||
pods: make(map[types.UID]WaitingPod), | ||
} | ||
} | ||
|
||
// add a new WaitingPod to the map. | ||
func (m *waitingPodsMap) add(wp WaitingPod) { | ||
m.mu.Lock() | ||
defer m.mu.Unlock() | ||
m.pods[wp.GetPod().UID] = wp | ||
} | ||
|
||
// remove a WaitingPod from the map. | ||
func (m *waitingPodsMap) remove(uid types.UID) { | ||
m.mu.Lock() | ||
defer m.mu.Unlock() | ||
delete(m.pods, uid) | ||
} | ||
|
||
// get a WaitingPod from the map. | ||
func (m *waitingPodsMap) get(uid types.UID) WaitingPod { | ||
m.mu.RLock() | ||
defer m.mu.RUnlock() | ||
return m.pods[uid] | ||
|
||
} | ||
|
||
// iterate acquires a read lock and iterates over the WaitingPods map. | ||
func (m *waitingPodsMap) iterate(callback func(WaitingPod)) { | ||
m.mu.RLock() | ||
defer m.mu.RUnlock() | ||
for _, v := range m.pods { | ||
callback(v) | ||
} | ||
} | ||
|
||
// waitingPod represents a pod waiting in the permit phase. | ||
type waitingPod struct { | ||
pod *v1.Pod | ||
s chan *Status | ||
} | ||
|
||
// newWaitingPod returns a new waitingPod instance. | ||
func newWaitingPod(pod *v1.Pod) *waitingPod { | ||
return &waitingPod{ | ||
pod: pod, | ||
s: make(chan *Status), | ||
} | ||
} | ||
|
||
// GetPod returns a reference to the waiting pod. | ||
func (w *waitingPod) GetPod() *v1.Pod { | ||
return w.pod | ||
} | ||
|
||
// Allow the waiting pod to be scheduled. Returns true if the allow signal was | ||
// successfully delivered, false otherwise. | ||
func (w *waitingPod) Allow() bool { | ||
select { | ||
case w.s <- NewStatus(Success, ""): | ||
return true | ||
default: | ||
return false | ||
} | ||
} | ||
|
||
// Reject declares the waiting pod unschedulable. Returns true if the allow signal | ||
// was successfully delivered, false otherwise. | ||
func (w *waitingPod) Reject(msg string) bool { | ||
select { | ||
case w.s <- NewStatus(Unschedulable, msg): | ||
return true | ||
default: | ||
return false | ||
} | ||
} |
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.