config

package
v0.39.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 21, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

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 {
	GRPCPort         int `yaml:"grpcPort"`
	HTTPPort         int `yaml:"httpPort"`
	InternalGRPCPort int `yaml:"internalGrpcPort"`

	Database db.Config `yaml:"database"`

	DefaultOrganization DefaultOrganizationConfig `yaml:"defaultOrganization"`
	DefaultProject      DefaultProjectConfig      `yaml:"defaultProject"`

	Debug DebugConfig `yaml:"debug"`

	AuthConfig AuthConfig `yaml:"auth"`
}

Config is the configuration.

func Parse

func Parse(path string) (Config, error)

Parse parses the configuration file at the given path, returning a new Config struct.

func (*Config) Validate

func (c *Config) Validate() error

Validate validates the configuration.

type DebugConfig

type DebugConfig struct {
	Standalone bool   `yaml:"standalone"`
	SqlitePath string `yaml:"sqlitePath"`
}

DebugConfig is the debug configuration.

type DefaultOrganizationConfig added in v0.16.0

type DefaultOrganizationConfig struct {
	Title   string   `yaml:"title"`
	UserIDs []string `yaml:"userIds"`
}

DefaultOrganizationConfig is the default organization configuration.

type DefaultProjectConfig added in v0.37.0

type DefaultProjectConfig struct {
	Title               string   `yaml:"title"`
	KubernetesNamespace string   `yaml:"kubernetesNamespace"`
	UserIDs             []string `yaml:"userIds"`
}

DefaultProjectConfig is the default project configuration.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL