Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthConfig ¶ added in v0.32.0
type AuthConfig struct {
Enable bool `yaml:"enable"`
RBACInternalServerAddr string `yaml:"rbacInternalServerAddr"`
}
AuthConfig is the authentication configuration.
func (*AuthConfig) Validate ¶ added in v0.32.0
func (c *AuthConfig) Validate() error
Validate validates the configuration.
type Config ¶
type Config struct {
HTTPPort int `yaml:"httpPort"`
GRPCPort int `yaml:"grpcPort"`
InternalGRPCPort int `yaml:"internalGrpcPort"`
Database db.Config `yaml:"database"`
ObjectStore ObjectStoreConfig `yaml:"objectStore"`
Debug DebugConfig `yaml:"debug"`
AuthConfig AuthConfig `yaml:"auth"`
}
Config is the configuration.
type DebugConfig ¶
type DebugConfig struct {
Standalone bool `yaml:"standalone"`
SqlitePath string `yaml:"sqlitePath"`
}
DebugConfig is the debug configuration.
type ObjectStoreConfig ¶ added in v0.2.0
type ObjectStoreConfig struct {
S3 S3Config `yaml:"s3"`
}
ObjectStoreConfig is the object store configuration.
func (*ObjectStoreConfig) Validate ¶ added in v0.2.0
func (c *ObjectStoreConfig) Validate() error
Validate validates the object store configuration.
Click to show internal directories.
Click to hide internal directories.