ConfigMaps is a wrapper around an implementation of a kubernetes ConfigMapsInterface.
| 44 | // ConfigMaps is a wrapper around an implementation of a kubernetes |
| 45 | // ConfigMapsInterface. |
| 46 | type ConfigMaps struct { |
| 47 | impl corev1.ConfigMapInterface |
| 48 | |
| 49 | // Embed a LogHolder to provide logger functionality |
| 50 | logging.LogHolder |
| 51 | } |
| 52 | |
| 53 | // NewConfigMaps initializes a new ConfigMaps wrapping an implementation of |
| 54 | // the kubernetes ConfigMapsInterface. |
nothing calls this directly
no outgoing calls
no test coverage detected