69 lines
2.0 KiB
Go
69 lines
2.0 KiB
Go
/*
|
|
Copyright 2015 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 benchmark
|
|
|
|
import (
|
|
v1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
coreinformers "k8s.io/client-go/informers/core/v1"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
restclient "k8s.io/client-go/rest"
|
|
"k8s.io/kubernetes/test/integration/util"
|
|
)
|
|
|
|
// mustSetupScheduler starts the following components:
|
|
// - k8s api server (a.k.a. master)
|
|
// - scheduler
|
|
// It returns clientset and destroyFunc which should be used to
|
|
// remove resources after finished.
|
|
// Notes on rate limiter:
|
|
// - client rate limit is set to 5000.
|
|
func mustSetupScheduler() (util.ShutdownFunc, coreinformers.PodInformer, clientset.Interface) {
|
|
apiURL, apiShutdown := util.StartApiserver()
|
|
clientSet := clientset.NewForConfigOrDie(&restclient.Config{
|
|
Host: apiURL,
|
|
ContentConfig: restclient.ContentConfig{GroupVersion: &schema.GroupVersion{Group: "", Version: "v1"}},
|
|
QPS: 5000.0,
|
|
Burst: 5000,
|
|
})
|
|
_, podInformer, schedulerShutdown := util.StartScheduler(clientSet)
|
|
|
|
shutdownFunc := func() {
|
|
schedulerShutdown()
|
|
apiShutdown()
|
|
}
|
|
|
|
return shutdownFunc, podInformer, clientSet
|
|
}
|
|
|
|
func getScheduledPods(podInformer coreinformers.PodInformer) ([]*v1.Pod, error) {
|
|
pods, err := podInformer.Lister().List(labels.Everything())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
scheduled := make([]*v1.Pod, 0, len(pods))
|
|
for i := range pods {
|
|
pod := pods[i]
|
|
if len(pod.Spec.NodeName) > 0 {
|
|
scheduled = append(scheduled, pod)
|
|
}
|
|
}
|
|
return scheduled, nil
|
|
}
|