mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
25 lines
891 B
Go
25 lines
891 B
Go
package config
|
|
|
|
import (
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/anchore/syft/syft/pkg/cataloger"
|
|
)
|
|
|
|
type pkg struct {
|
|
Cataloger catalogerOptions `yaml:"cataloger" json:"cataloger" mapstructure:"cataloger"`
|
|
SearchUnindexedArchives bool `yaml:"search-unindexed-archives" json:"search-unindexed-archives" mapstructure:"search-unindexed-archives"`
|
|
SearchIndexedArchives bool `yaml:"search-indexed-archives" json:"search-indexed-archives" mapstructure:"search-indexed-archives"`
|
|
}
|
|
|
|
func (cfg pkg) loadDefaultValues(v *viper.Viper) {
|
|
cfg.Cataloger.loadDefaultValues(v)
|
|
c := cataloger.DefaultSearchConfig()
|
|
v.SetDefault("package.search-unindexed-archives", c.IncludeUnindexedArchives)
|
|
v.SetDefault("package.search-indexed-archives", c.IncludeIndexedArchives)
|
|
}
|
|
|
|
func (cfg *pkg) parseConfigValues() error {
|
|
return cfg.Cataloger.parseConfigValues()
|
|
}
|