option to override hub url template. for testers only. (#2785)
This commit is contained in:
parent
532e97e00f
commit
91b0fce955
4 changed files with 15 additions and 3 deletions
|
@ -56,3 +56,7 @@ func HubBranch(cfg *csconfig.Config) string {
|
|||
|
||||
return branch
|
||||
}
|
||||
|
||||
func HubURLTemplate(cfg *csconfig.Config) string {
|
||||
return cfg.Cscli.HubURLTemplate
|
||||
}
|
||||
|
|
|
@ -66,10 +66,10 @@ func Notifications(c *csconfig.Config) error {
|
|||
func RemoteHub(c *csconfig.Config) *cwhub.RemoteHubCfg {
|
||||
// set branch in config, and log if necessary
|
||||
branch := HubBranch(c)
|
||||
urlTemplate := HubURLTemplate(c)
|
||||
remote := &cwhub.RemoteHubCfg{
|
||||
Branch: branch,
|
||||
URLTemplate: "https://hub-cdn.crowdsec.net/%s/%s",
|
||||
// URLTemplate: "http://localhost:8000/crowdsecurity/%s/hub/%s",
|
||||
URLTemplate: urlTemplate,
|
||||
IndexPath: ".index.json",
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ type CscliCfg struct {
|
|||
Output string `yaml:"output,omitempty"`
|
||||
Color string `yaml:"color,omitempty"`
|
||||
HubBranch string `yaml:"hub_branch"`
|
||||
HubURLTemplate string `yaml:"__hub_url_template__,omitempty"`
|
||||
SimulationConfig *SimulationConfig `yaml:"-"`
|
||||
DbConfig *DatabaseCfg `yaml:"-"`
|
||||
|
||||
|
@ -16,6 +17,8 @@ type CscliCfg struct {
|
|||
PrometheusUrl string `yaml:"prometheus_uri"`
|
||||
}
|
||||
|
||||
const defaultHubURLTemplate = "https://hub-cdn.crowdsec.net/%s/%s"
|
||||
|
||||
func (c *Config) loadCSCLI() error {
|
||||
if c.Cscli == nil {
|
||||
c.Cscli = &CscliCfg{}
|
||||
|
@ -25,5 +28,9 @@ func (c *Config) loadCSCLI() error {
|
|||
c.Cscli.PrometheusUrl = fmt.Sprintf("http://%s:%d/metrics", c.Prometheus.ListenAddr, c.Prometheus.ListenPort)
|
||||
}
|
||||
|
||||
if c.Cscli.HubURLTemplate == "" {
|
||||
c.Cscli.HubURLTemplate = defaultHubURLTemplate
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
|
@ -32,7 +32,8 @@ func TestLoadCSCLI(t *testing.T) {
|
|||
},
|
||||
},
|
||||
expected: &CscliCfg{
|
||||
PrometheusUrl: "http://127.0.0.1:6060/metrics",
|
||||
PrometheusUrl: "http://127.0.0.1:6060/metrics",
|
||||
HubURLTemplate: defaultHubURLTemplate,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue