mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package controller
|
|
|
|
import (
|
|
"github.com/michaelquigley/cf"
|
|
"github.com/openziti-test-kitchen/zrok/controller/store"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const ConfigVersion = 1
|
|
|
|
type Config struct {
|
|
V int
|
|
Admin *AdminConfig
|
|
Endpoint *EndpointConfig
|
|
Email *EmailConfig
|
|
Registration *RegistrationConfig
|
|
Store *store.Config
|
|
Ziti *ZitiConfig
|
|
Metrics *MetricsConfig
|
|
Influx *InfluxConfig
|
|
}
|
|
|
|
type AdminConfig struct {
|
|
Secrets []string `cf:"+secret"`
|
|
}
|
|
|
|
type EndpointConfig struct {
|
|
Host string
|
|
Port int
|
|
}
|
|
|
|
type EmailConfig struct {
|
|
Host string
|
|
Port int
|
|
Username string
|
|
Password string `cf:"+secret"`
|
|
}
|
|
|
|
type RegistrationConfig struct {
|
|
EmailFrom string
|
|
RegistrationUrlTemplate string
|
|
TokenStrategy string
|
|
}
|
|
|
|
type ZitiConfig struct {
|
|
ApiEndpoint string
|
|
Username string
|
|
Password string `cf:"+secret"`
|
|
}
|
|
|
|
type MetricsConfig struct {
|
|
ServiceName string
|
|
}
|
|
|
|
type InfluxConfig struct {
|
|
Url string
|
|
Bucket string
|
|
Org string
|
|
Token string `cf:"+secret"`
|
|
}
|
|
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
Metrics: &MetricsConfig{ServiceName: "metrics"},
|
|
}
|
|
}
|
|
|
|
func LoadConfig(path string) (*Config, error) {
|
|
cfg := DefaultConfig()
|
|
if err := cf.BindYaml(cfg, path, cf.DefaultOptions()); err != nil {
|
|
return nil, errors.Wrapf(err, "error loading controller config '%v'", path)
|
|
}
|
|
if cfg.V != ConfigVersion {
|
|
return nil, errors.Errorf("expecting configuration version '%v', your configuration is version '%v'; please see zrok.io for changelog and configuration documentation", ConfigVersion, cfg.V)
|
|
}
|
|
return cfg, nil
|
|
}
|