2018-12-19 14:26:16 +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 util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2019-02-04 13:05:43 +00:00
|
|
|
"k8s.io/klog"
|
2018-12-19 14:26:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-01-28 11:47:06 +00:00
|
|
|
//PluginFolder defines location of plugins
|
2018-12-19 14:26:16 +00:00
|
|
|
PluginFolder = "/var/lib/kubelet/plugins"
|
|
|
|
)
|
|
|
|
|
2019-01-29 06:07:03 +00:00
|
|
|
// ForAllFunc stores metadata with identifier
|
2018-12-19 14:26:16 +00:00
|
|
|
type ForAllFunc func(identifier string) error
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// CachePersister interface implemented for store
|
2018-12-19 14:26:16 +00:00
|
|
|
type CachePersister interface {
|
|
|
|
Create(identifier string, data interface{}) error
|
|
|
|
Get(identifier string, data interface{}) error
|
|
|
|
ForAll(pattern string, destObj interface{}, f ForAllFunc) error
|
|
|
|
Delete(identifier string) error
|
|
|
|
}
|
|
|
|
|
2019-01-28 11:47:06 +00:00
|
|
|
// NewCachePersister returns CachePersister based on store
|
2019-01-17 05:07:59 +00:00
|
|
|
func NewCachePersister(metadataStore, driverName string) (CachePersister, error) {
|
2018-12-19 14:26:16 +00:00
|
|
|
if metadataStore == "k8s_configmap" {
|
2019-02-04 13:05:43 +00:00
|
|
|
klog.Infof("cache-perister: using kubernetes configmap as metadata cache persister")
|
2018-12-19 14:26:16 +00:00
|
|
|
k8scm := &K8sCMCache{}
|
|
|
|
k8scm.Client = NewK8sClient()
|
|
|
|
k8scm.Namespace = GetK8sNamespace()
|
|
|
|
return k8scm, nil
|
|
|
|
} else if metadataStore == "node" {
|
2019-02-04 13:05:43 +00:00
|
|
|
klog.Infof("cache-persister: using node as metadata cache persister")
|
2018-12-19 14:26:16 +00:00
|
|
|
nc := &NodeCache{}
|
|
|
|
nc.BasePath = PluginFolder + "/" + driverName
|
|
|
|
return nc, nil
|
|
|
|
}
|
|
|
|
return nil, errors.New("cache-persister: couldn't parse metadatastorage flag")
|
|
|
|
}
|