package configmap
import "k8s.io/kubernetes/pkg/kubelet/configmap"
Index ¶
- type Manager
- func NewCachingConfigMapManager(kubeClient clientset.Interface, getTTL manager.GetObjectTTLFunc) Manager
- func NewFakeManager() Manager
- func NewSimpleConfigMapManager(kubeClient clientset.Interface) Manager
- func NewWatchingConfigMapManager(kubeClient clientset.Interface, resyncInterval time.Duration) Manager
Types ¶
type Manager ¶
type Manager interface { // Get configmap by configmap namespace and name. GetConfigMap(namespace, name string) (*v1.ConfigMap, error) // RegisterPod registers all configmaps from a given pod. RegisterPod(pod *v1.Pod) // UnregisterPod unregisters configmaps from a given pod that are not // used by any other registered pod. UnregisterPod(pod *v1.Pod) }
Manager interface provides methods for Kubelet to manage ConfigMap.
func NewCachingConfigMapManager ¶
func NewCachingConfigMapManager(kubeClient clientset.Interface, getTTL manager.GetObjectTTLFunc) Manager
NewCachingConfigMapManager creates a manager that keeps a cache of all configmaps necessary for registered pods. It implement the following logic:
- whenever a pod is create or updated, the cached versions of all configmaps are invalidated
- every GetObject() call tries to fetch the value from local cache; if it is not there, invalidated or too old, we fetch it from apiserver and refresh the value in cache; otherwise it is just fetched from cache
func NewFakeManager ¶
func NewFakeManager() Manager
NewFakeManager creates empty/fake ConfigMap manager
func NewSimpleConfigMapManager ¶
NewSimpleConfigMapManager creates a new ConfigMapManager instance.
func NewWatchingConfigMapManager ¶
func NewWatchingConfigMapManager(kubeClient clientset.Interface, resyncInterval time.Duration) Manager
NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps necessary for registered pods. It implements the following logic:
- whenever a pod is created or updated, we start individual watches for all referenced objects that aren't referenced from other registered pods
- every GetObject() returns a value from local cache propagated via watches
Source Files ¶
configmap_manager.go fake_manager.go
- Version
- v1.33.0 (latest)
- Published
- Apr 23, 2025
- Platform
- linux/amd64
- Imports
- 13 packages
- Last checked
- 3 hours ago –
Tools for package owners.