(f factory.Factory, client kubectl.Client, configPath string, configOptions *loader.ConfigOptions)
| 68 | } |
| 69 | |
| 70 | func LoadConfigWithOptions(f factory.Factory, client kubectl.Client, configPath string, configOptions *loader.ConfigOptions) (config.Config, []types.Dependency, error) { |
| 71 | return LoadConfigWithOptionsAndResolve(f, client, configPath, configOptions, dependency.ResolveOptions{}) |
| 72 | } |
| 73 | |
| 74 | func LoadConfig(f factory.Factory, client kubectl.Client, configPath string) (config.Config, []types.Dependency, error) { |
| 75 | return LoadConfigWithOptions(f, client, configPath, &loader.ConfigOptions{}) |
no test coverage detected