2020-07-24 13:54:03 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neofs-node/misc"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newConfig(path string) (*viper.Viper, error) {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
v = viper.New()
|
|
|
|
)
|
|
|
|
|
|
|
|
v.SetEnvPrefix(misc.InnerRingPrefix)
|
|
|
|
v.AutomaticEnv()
|
|
|
|
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
|
|
|
|
|
|
v.SetDefault("app.name", misc.InnerRingName)
|
|
|
|
v.SetDefault("app.version", misc.Version)
|
|
|
|
|
|
|
|
defaultConfiguration(v)
|
|
|
|
|
|
|
|
if path != "" {
|
|
|
|
v.SetConfigFile(path)
|
|
|
|
v.SetConfigType("yml") // fixme: for now
|
|
|
|
err = v.ReadInConfig()
|
|
|
|
}
|
|
|
|
|
|
|
|
return v, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultConfiguration(cfg *viper.Viper) {
|
|
|
|
cfg.SetDefault("logger.level", "info")
|
|
|
|
cfg.SetDefault("logger.format", "console")
|
|
|
|
cfg.SetDefault("logger.trace_level", "fatal")
|
|
|
|
cfg.SetDefault("logger.no_disclaimer", false)
|
|
|
|
cfg.SetDefault("logger.sampling.initial", 1000)
|
|
|
|
cfg.SetDefault("logger.sampling.thereafter", 1000)
|
|
|
|
|
|
|
|
cfg.SetDefault("pprof.enabled", false)
|
|
|
|
cfg.SetDefault("pprof.address", ":6060")
|
|
|
|
cfg.SetDefault("pprof.shutdown_ttl", "30s")
|
|
|
|
|
|
|
|
cfg.SetDefault("metrics.enabled", false)
|
|
|
|
cfg.SetDefault("metrics.address", ":9090")
|
|
|
|
cfg.SetDefault("metrics.shutdown_ttl", "30s")
|
|
|
|
|
|
|
|
cfg.SetDefault("morph.endpoint.client", "")
|
|
|
|
cfg.SetDefault("morph.endpoint.notification", "")
|
|
|
|
cfg.SetDefault("morph.dial_timeout", "10s")
|
2020-11-13 11:47:23 +00:00
|
|
|
cfg.SetDefault("morph.validators", []string{})
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
cfg.SetDefault("mainnet.endpoint.client", "")
|
|
|
|
cfg.SetDefault("mainnet.endpoint.notification", "")
|
|
|
|
cfg.SetDefault("mainnet.dial_timeout", "10s")
|
|
|
|
|
|
|
|
cfg.SetDefault("key", "") // inner ring node key
|
|
|
|
|
|
|
|
cfg.SetDefault("contracts.netmap", "")
|
|
|
|
cfg.SetDefault("contracts.neofs", "")
|
|
|
|
cfg.SetDefault("contracts.balance", "")
|
2020-08-11 12:14:08 +00:00
|
|
|
cfg.SetDefault("contracts.container", "")
|
2020-10-12 09:29:27 +00:00
|
|
|
// alphabet contracts
|
|
|
|
cfg.SetDefault("contracts.alphabet.az", "")
|
|
|
|
cfg.SetDefault("contracts.alphabet.buky", "")
|
|
|
|
cfg.SetDefault("contracts.alphabet.vedi", "")
|
|
|
|
cfg.SetDefault("contracts.alphabet.glagoli", "")
|
|
|
|
cfg.SetDefault("contracts.alphabet.dobro", "")
|
|
|
|
cfg.SetDefault("contracts.alphabet.jest", "")
|
|
|
|
cfg.SetDefault("contracts.alphabet.zhivete", "")
|
2020-08-27 14:18:28 +00:00
|
|
|
// gas native contract in LE
|
|
|
|
cfg.SetDefault("contracts.gas", "668e0c1f9d7b70a99dd9e06eadd4c784d641afbc")
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
cfg.SetDefault("timers.epoch", "5s")
|
2020-10-12 09:49:38 +00:00
|
|
|
cfg.SetDefault("timers.emit", "30s")
|
2020-07-24 13:54:03 +00:00
|
|
|
|
|
|
|
cfg.SetDefault("workers.netmap", "10")
|
|
|
|
cfg.SetDefault("workers.balance", "10")
|
|
|
|
cfg.SetDefault("workers.neofs", "10")
|
2020-08-11 12:14:08 +00:00
|
|
|
cfg.SetDefault("workers.container", "10")
|
2020-10-12 10:17:40 +00:00
|
|
|
cfg.SetDefault("workers.alphabet", "10")
|
2020-10-29 16:09:45 +00:00
|
|
|
|
|
|
|
cfg.SetDefault("netmap_cleaner.enabled", false)
|
|
|
|
cfg.SetDefault("netmap_cleaner.threshold", 3)
|
2020-11-03 08:12:39 +00:00
|
|
|
|
|
|
|
cfg.SetDefault("emit.storage.amount", 0)
|
2020-11-03 11:16:32 +00:00
|
|
|
cfg.SetDefault("emit.mint.cache_size", 1000)
|
|
|
|
cfg.SetDefault("emit.mint.threshold", 1)
|
|
|
|
cfg.SetDefault("emit.mint.value", 20000000) // 0.2 Fixed8
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|