2018-08-27 20:12:45 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 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 runtimeclass
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
2019-01-23 22:26:02 +00:00
|
|
|
nodeapiclient "k8s.io/node-api/pkg/client/clientset/versioned"
|
|
|
|
nodeapiinformer "k8s.io/node-api/pkg/client/informers/externalversions"
|
|
|
|
nodev1alpha1 "k8s.io/node-api/pkg/client/listers/node/v1alpha1"
|
2018-08-27 20:12:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
runtimeClassGVR = schema.GroupVersionResource{
|
|
|
|
Group: "node.k8s.io",
|
|
|
|
Version: "v1alpha1",
|
|
|
|
Resource: "runtimeclasses",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// Manager caches RuntimeClass API objects, and provides accessors to the Kubelet.
|
|
|
|
type Manager struct {
|
2019-01-23 22:26:02 +00:00
|
|
|
informerFactory nodeapiinformer.SharedInformerFactory
|
|
|
|
lister nodev1alpha1.RuntimeClassLister
|
2018-08-27 20:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewManager returns a new RuntimeClass Manager. Run must be called before the manager can be used.
|
2019-01-23 22:26:02 +00:00
|
|
|
func NewManager(client nodeapiclient.Interface) *Manager {
|
|
|
|
const resyncPeriod = 0
|
|
|
|
factory := nodeapiinformer.NewSharedInformerFactory(client, resyncPeriod)
|
|
|
|
lister := factory.Node().V1alpha1().RuntimeClasses().Lister()
|
2018-08-27 20:12:45 +00:00
|
|
|
|
|
|
|
return &Manager{
|
2019-01-23 22:26:02 +00:00
|
|
|
informerFactory: factory,
|
|
|
|
lister: lister,
|
2018-08-27 20:12:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 22:26:02 +00:00
|
|
|
// Start starts syncing the RuntimeClass cache with the apiserver.
|
|
|
|
func (m *Manager) Start(stopCh <-chan struct{}) {
|
|
|
|
m.informerFactory.Start(stopCh)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForCacheSync exposes the WaitForCacheSync method on the informer factory for testing
|
|
|
|
// purposes.
|
|
|
|
func (m *Manager) WaitForCacheSync(stopCh <-chan struct{}) {
|
|
|
|
m.informerFactory.WaitForCacheSync(stopCh)
|
2018-08-27 20:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LookupRuntimeHandler returns the RuntimeHandler string associated with the given RuntimeClass
|
|
|
|
// name (or the default of "" for nil). If the RuntimeClass is not found, it returns an
|
2019-01-23 22:26:02 +00:00
|
|
|
// errors.NotFound error.
|
2018-08-27 20:12:45 +00:00
|
|
|
func (m *Manager) LookupRuntimeHandler(runtimeClassName *string) (string, error) {
|
|
|
|
if runtimeClassName == nil || *runtimeClassName == "" {
|
|
|
|
// The default RuntimeClass always resolves to the empty runtime handler.
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
name := *runtimeClassName
|
2019-01-23 22:26:02 +00:00
|
|
|
|
|
|
|
rc, err := m.lister.Get(name)
|
2018-08-27 20:12:45 +00:00
|
|
|
if err != nil {
|
2019-01-23 22:26:02 +00:00
|
|
|
if errors.IsNotFound(err) {
|
|
|
|
return "", err
|
|
|
|
}
|
2018-08-27 20:12:45 +00:00
|
|
|
return "", fmt.Errorf("Failed to lookup RuntimeClass %s: %v", name, err)
|
|
|
|
}
|
|
|
|
|
2019-01-23 22:26:02 +00:00
|
|
|
handler := rc.Spec.RuntimeHandler
|
|
|
|
if handler == nil {
|
|
|
|
return "", nil
|
2018-08-27 20:12:45 +00:00
|
|
|
}
|
2019-01-23 22:26:02 +00:00
|
|
|
return *handler, nil
|
2018-08-27 20:12:45 +00:00
|
|
|
}
|