ReadConfigMap reads the configuration from the environment and the passed in data map
(data map[string]string)
| 225 | |
| 226 | // ReadConfigMap reads the configuration from the environment and the passed in data map |
| 227 | func (config *Data) ReadConfigMap(data map[string]string) { |
| 228 | configparser.ReadConfigMap(config, newDefaultConfig(), data) |
| 229 | } |
| 230 | |
| 231 | // IsAnnotationInherited checks if an annotation with a certain name should |
| 232 | // be inherited from the Cluster specification to the generated objects |
no test coverage detected