pkg/client/apifactory.go (197 lines of code) (raw):
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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 client
import (
"errors"
"time"
"go.uber.org/zap"
"k8s.io/client-go/informers"
"k8s.io/client-go/tools/cache"
"k8s.io/klog/v2"
"k8s.io/kubernetes/pkg/scheduler/framework/plugins/volumebinding"
"github.com/apache/yunikorn-k8shim/pkg/conf"
"github.com/apache/yunikorn-k8shim/pkg/locking"
"github.com/apache/yunikorn-k8shim/pkg/log"
"github.com/apache/yunikorn-scheduler-interface/lib/go/api"
)
type Type int
var informerTypes = [...]string{"Pod", "Node", "ConfigMap", "PV", "PVC", "Storage", "CSINode", "CSIDriver", "CSIStorageCapacity", "Namespace", "PriorityClass", "Service", "ReplicationController", "ReplicaSet", "StatefulSet", "VolumeAttachment"}
const (
PodInformerHandlers Type = iota
NodeInformerHandlers
ConfigMapInformerHandlers
PVInformerHandlers
PVCInformerHandlers
StorageInformerHandlers
CSINodeInformerHandlers
CSIDriverInformerHandlers
CSIStorageCapacityInformerHandlers
NamespaceInformerHandlers
PriorityClassInformerHandlers
ServiceInformerHandlers
ReplicationControllerInformerHandlers
ReplicaSetInformerHandlers
StatefulSetInformerHandlers
VolumeAttachmentInformerHandlers
)
func (t Type) String() string {
return informerTypes[t]
}
type APIProvider interface {
GetAPIs() *Clients
AddEventHandler(handlers *ResourceEventHandlers) error
Start()
Stop()
WaitForSync()
IsTestingMode() bool
}
// resource handlers defines add/update/delete operations in response to the corresponding resources updates.
// The associated the type field points the handler functions to the correct receiver.
type ResourceEventHandlers struct {
Type
FilterFn func(obj interface{}) bool
AddFn func(obj interface{})
UpdateFn func(old, new interface{})
DeleteFn func(obj interface{})
}
// API factory maintains shared clients which can be used to access other external components
// e.g K8s api-server, or scheduler-core.
type APIFactory struct {
clients *Clients
testMode bool
stopChan chan struct{}
lock *locking.RWMutex
}
func NewAPIFactory(scheduler api.SchedulerAPI, informerFactory informers.SharedInformerFactory, configs *conf.SchedulerConf, testMode bool) *APIFactory {
kubeClient := NewKubeClient(configs.KubeConfig)
namespaceInformerFactory := informers.NewSharedInformerFactoryWithOptions(kubeClient.GetClientSet(), 0, informers.WithNamespace(configs.Namespace))
// init informers
// volume informers are also used to get the Listers for the predicates
podInformer := informerFactory.Core().V1().Pods()
nodeInformer := informerFactory.Core().V1().Nodes()
configMapInformer := namespaceInformerFactory.Core().V1().ConfigMaps()
pvInformer := informerFactory.Core().V1().PersistentVolumes()
pvcInformer := informerFactory.Core().V1().PersistentVolumeClaims()
storageInformer := informerFactory.Storage().V1().StorageClasses()
csiNodeInformer := informerFactory.Storage().V1().CSINodes()
csiDriverInformer := informerFactory.Storage().V1().CSIDrivers()
csiStorageCapacityInformer := informerFactory.Storage().V1().CSIStorageCapacities()
namespaceInformer := informerFactory.Core().V1().Namespaces()
priorityClassInformer := informerFactory.Scheduling().V1().PriorityClasses()
serviceInformer := informerFactory.Core().V1().Services()
replicationControllerInformer := informerFactory.Core().V1().ReplicationControllers()
replicaSetInformer := informerFactory.Apps().V1().ReplicaSets()
statefulSetInformer := informerFactory.Apps().V1().StatefulSets()
volumeAttachmentInformer := informerFactory.Storage().V1().VolumeAttachments()
var capacityCheck = volumebinding.CapacityCheck{
CSIDriverInformer: informerFactory.Storage().V1().CSIDrivers(),
CSIStorageCapacityInformer: informerFactory.Storage().V1().CSIStorageCapacities(),
}
// create a volume binder (needs the informers)
volumeBinder := volumebinding.NewVolumeBinder(
klog.NewKlogr(),
kubeClient.GetClientSet(),
podInformer,
nodeInformer,
csiNodeInformer,
pvcInformer,
pvInformer,
storageInformer,
capacityCheck,
configs.VolumeBindTimeout)
return &APIFactory{
clients: &Clients{
KubeClient: kubeClient,
SchedulerAPI: scheduler,
InformerFactory: informerFactory,
PodInformer: podInformer,
NodeInformer: nodeInformer,
ConfigMapInformer: configMapInformer,
PVInformer: pvInformer,
PVCInformer: pvcInformer,
StorageClassInformer: storageInformer,
CSINodeInformer: csiNodeInformer,
CSIDriverInformer: csiDriverInformer,
CSIStorageCapacityInformer: csiStorageCapacityInformer,
NamespaceInformer: namespaceInformer,
PriorityClassInformer: priorityClassInformer,
ServiceInformer: serviceInformer,
ReplicationControllerInformer: replicationControllerInformer,
ReplicaSetInformer: replicaSetInformer,
StatefulSetInformer: statefulSetInformer,
VolumeAttachmentInformer: volumeAttachmentInformer,
VolumeBinder: volumeBinder,
},
testMode: testMode,
stopChan: make(chan struct{}),
lock: &locking.RWMutex{},
}
}
func (s *APIFactory) GetAPIs() *Clients {
return s.clients
}
func (s *APIFactory) IsTestingMode() bool {
return s.testMode
}
func (s *APIFactory) AddEventHandler(handlers *ResourceEventHandlers) error {
s.lock.Lock()
defer s.lock.Unlock()
// register all handlers
var h cache.ResourceEventHandler
fns := cache.ResourceEventHandlerFuncs{
AddFunc: handlers.AddFn,
UpdateFunc: handlers.UpdateFn,
DeleteFunc: handlers.DeleteFn,
}
// if filter function exists
// add a wrapper
if handlers.FilterFn != nil {
h = cache.FilteringResourceEventHandler{
FilterFunc: handlers.FilterFn,
Handler: fns,
}
} else {
h = fns
}
log.Log(log.ShimClient).Info("registering event handler", zap.Stringer("type", handlers.Type))
if err := s.addEventHandlers(handlers.Type, h, 0); err != nil {
return errors.Join(errors.New("failed to initialize event handlers: "), err)
}
return nil
}
func (s *APIFactory) addEventHandlers(
handlerType Type, handler cache.ResourceEventHandler, resyncPeriod time.Duration) error {
var err error
switch handlerType {
case PodInformerHandlers:
_, err = s.GetAPIs().PodInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
case NodeInformerHandlers:
_, err = s.GetAPIs().NodeInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
case ConfigMapInformerHandlers:
_, err = s.GetAPIs().ConfigMapInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
case StorageInformerHandlers:
_, err = s.GetAPIs().StorageClassInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
case PVInformerHandlers:
_, err = s.GetAPIs().PVInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
case PVCInformerHandlers:
_, err = s.GetAPIs().PVCInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
case PriorityClassInformerHandlers:
_, err = s.GetAPIs().PriorityClassInformer.Informer().
AddEventHandlerWithResyncPeriod(handler, resyncPeriod)
}
if err != nil {
return errors.Join(errors.New("failed to add event handlers: "), err)
}
return nil
}
func (s *APIFactory) WaitForSync() {
if s.testMode {
// skip this in test mode
return
}
s.clients.WaitForSync()
}
func (s *APIFactory) Start() {
// launch clients
if !s.IsTestingMode() {
s.clients.Run(s.stopChan)
s.clients.WaitForSync()
}
}
func (s *APIFactory) Stop() {
if !s.IsTestingMode() {
close(s.stopChan)
}
}