| 23 | ) |
| 24 | |
| 25 | type configMapCache struct { |
| 26 | namespace string |
| 27 | name string |
| 28 | kubeClient kubernetes.Interface |
| 29 | lock sync.RWMutex |
| 30 | } |
| 31 | |
| 32 | func NewConfigMapCache(ns string, ki kubernetes.Interface, n string) MemoizationCache { |
| 33 | return &configMapCache{ |
nothing calls this directly
no outgoing calls
no test coverage detected