Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateConfig ¶
ValidateConfig is for custom validation rules for the configuration
Types ¶
type AppConfig ¶
type AppConfig struct { Server ServerConfig `koanf:"server"` Database DatabaseConfig `koanf:"database"` TritonServer TritonServerConfig `koanf:"tritonserver"` MgmtBackend MgmtBackendConfig `koanf:"mgmtbackend"` Cache CacheConfig `koanf:"cache"` UsageBackend UsageBackendConfig `koanf:"usagebackend"` PipelineBackend PipelineBackendConfig `koanf:"pipelinebackend"` }
AppConfig defines
var Config AppConfig
Config - Global variable to export
type CacheConfig ¶
type CacheConfig struct {
Redis struct {
RedisOptions redis.Options `koanf:"redisoptions"`
}
}
CacheConfig related to Redis
type DatabaseConfig ¶
type DatabaseConfig struct { Username string `koanf:"username"` Password string `koanf:"password"` Host string `koanf:"host"` Port int `koanf:"port"` Name string `koanf:"name"` Version uint `koanf:"version"` TimeZone string `koanf:"timezone"` Pool struct { IdleConnections int `koanf:"idleconnections"` MaxConnections int `koanf:"maxconnections"` ConnLifeTime time.Duration `koanf:"connlifetime"` } }
config related to database
type MgmtBackendConfig ¶
type MgmtBackendConfig struct { Host string `koanf:"host"` Port int `koanf:"port"` HTTPS struct { Cert string `koanf:"cert"` Key string `koanf:"key"` } }
MgmtBackendConfig related to mgmt-backend
type PipelineBackendConfig ¶
type ServerConfig ¶
type ServerConfig struct { Port int `koanf:"port"` HTTPS struct { Cert string `koanf:"cert"` Key string `koanf:"key"` } CORSOrigins []string `koanf:"corsorigins"` Edition string `koanf:"edition"` DisableUsage bool `koanf:"disableusage"` Debug bool `koanf:"debug"` }
ServerConfig defines HTTP server configurations
type TritonServerConfig ¶
type UsageBackendConfig ¶
Click to show internal directories.
Click to hide internal directories.