Documentation ¶
Index ¶
Constants ¶
View Source
const ( AttributeID = attribute.Key("d7y.manager.id") AttributePreheatType = attribute.Key("d7y.manager.preheat.type") AttributePreheatURL = attribute.Key("d7y.manager.preheat.url") )
View Source
const ( SpanPreheat = "preheat" SpanGetLayers = "get-layers" SpanAuthWithRegistry = "auth-with-registry" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CacheConfig ¶
type CacheConfig struct { // Redis cache configuration Redis *RedisCacheConfig `yaml:"redis" mapstructure:"redis"` // Local cache configuration Local *LocalCacheConfig `yaml:"local" mapstructure:"local"` }
type Config ¶
type Config struct { // Base options base.Options `yaml:",inline" mapstructure:",squash"` // Server configuration Server *ServerConfig `yaml:"server" mapstructure:"server"` // Database configuration Database *DatabaseConfig `yaml:"database" mapstructure:"database"` // Cache configuration Cache *CacheConfig `yaml:"cache" mapstructure:"cache"` // Metrics configuration Metrics *RestConfig `yaml:"metrics" mapstructure:"metrics"` }
type DatabaseConfig ¶
type DatabaseConfig struct { // Mysql configuration Mysql *MysqlConfig `yaml:"mysql" mapstructure:"mysql"` // Redis configuration Redis *RedisConfig `yaml:"redis" mapstructure:"redis"` }
type LocalCacheConfig ¶
type MysqlConfig ¶
type MysqlConfig struct { // Server username User string `yaml:"user" mapstructure:"user"` // Server password Password string `yaml:"password" mapstructure:"password"` // Server host Host string `yaml:"host" mapstructure:"host"` // Server port Port int `yaml:"port" mapstructure:"port"` // Server DB name DBName string `yaml:"dbname" mapstructure:"dbname"` // Enable migration Migrate bool `yaml:"migrate" mapstructure:"migrate"` // TLS configuration TLS *TLSConfig `yaml:"tls" mapstructure:"tls"` }
type RedisCacheConfig ¶
type RedisConfig ¶
type RedisConfig struct { // Server host Host string `yaml:"host" mapstructure:"host"` // Server port Port int `yaml:"port" mapstructure:"port"` // Server password Password string `yaml:"password" mapstructure:"password"` // Server cache DB name CacheDB int `yaml:"cacheDB" mapstructure:"cacheDB"` // Server broker DB name BrokerDB int `yaml:"brokerDB" mapstructure:"brokerDB"` // Server backend DB name BackendDB int `yaml:"backendDB" mapstructure:"backendDB"` }
type RestConfig ¶
type RestConfig struct { // REST server address Addr string `yaml:"addr" mapstructure:"addr"` }
type ServerConfig ¶
type ServerConfig struct { // Server name Name string `yaml:"name" mapstructure:"name"` // Server log directory LogDir string `yaml:"logDir" mapstructure:"logDir"` // Console resource path PublicPath string `yaml:"publicPath" mapstructure:"publicPath"` // GRPC server configuration GRPC *TCPListenConfig `yaml:"grpc" mapstructure:"grpc"` // REST server configuration REST *RestConfig `yaml:"rest" mapstructure:"rest"` }
type TCPListenConfig ¶
type TCPListenConfig struct { // Listen stands listen interface, like: 0.0.0.0, 192.168.0.1 Listen string `mapstructure:"listen" yaml:"listen"` // PortRange stands listen port PortRange TCPListenPortRange `yaml:"port" mapstructure:"port"` }
type TCPListenPortRange ¶
type TLSConfig ¶ added in v2.0.2
type TLSConfig struct { // Client certificate file path Cert string `yaml:"cert" mapstructure:"cert"` // Client key file path Key string `yaml:"key" mapstructure:"key"` // CA file path CA string `yaml:"ca" mapstructure:"ca"` // InsecureSkipVerify controls whether a client verifies the // server's certificate chain and host name. InsecureSkipVerify bool `yaml:"insecureSkipVerify" mapstructure:"insecureSkipVerify"` }
Click to show internal directories.
Click to hide internal directories.