Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthConfig ¶
type AuthConfig struct {
Enable bool `yaml:"enable"`
RBACInternalServerAddr string `yaml:"rbacInternalServerAddr"`
}
AuthConfig is the authentication configuration.
type Config ¶
type Config struct {
HTTPPort int `yaml:"httpPort"`
GRPCPort int `yaml:"grpcPort"`
WorkerServiceGRPCPort int `yaml:"workerServiceGrpcPort"`
ProjectCache ProjectCacheConfig `yaml:"projectCache"`
// GracefulShutdownDelay is the delay before shutting down the server.
GracefulShutdownDelay time.Duration `yaml:"gracefulShutdownDelay"`
Database db.Config `yaml:"database"`
AuthConfig AuthConfig `yaml:"auth"`
UsageSender sender.Config `yaml:"usageSender"`
Debug DebugConfig `yaml:"debug"`
}
Config is the configuration.
type DebugConfig ¶
type DebugConfig struct {
Standalone bool `yaml:"standalone"`
SqlitePath string `yaml:"sqlitePath"`
}
DebugConfig is the debug configuration.
type ProjectCacheConfig ¶ added in v1.25.0
type ProjectCacheConfig struct {
UserManagerInternalServerAddr string `yaml:"userManagerInternalServerAddr"`
RefreshInterval time.Duration `yaml:"refreshInterval"`
}
ProjectCacheConfig is the project cache configuration.
Click to show internal directories.
Click to hide internal directories.