(labelKeys ...string)
| 142 | } |
| 143 | |
| 144 | func (c *Client) ListConfigMapsWithLabelKeys(labelKeys ...string) ([]kcore.ConfigMap, error) { |
| 145 | opts := &kmeta.ListOptions{ |
| 146 | LabelSelector: LabelExistsSelector(labelKeys...), |
| 147 | } |
| 148 | return c.ListConfigMaps(opts) |
| 149 | } |
| 150 | |
| 151 | func ConfigMapMap(configMaps []kcore.ConfigMap) map[string]kcore.ConfigMap { |
| 152 | configMapMap := map[string]kcore.ConfigMap{} |
nothing calls this directly
no test coverage detected