Documentation ¶
Overview ¶
Example (UnmarshalInitConfig) ¶
package main import ( "openpitrix.io/openpitrix/pkg/config" "openpitrix.io/openpitrix/pkg/logger" ) func main() { globalConfig := config.DecodeInitConfig() logger.Info(nil, "Got global config: \n%+v\n", globalConfig) logger.Info(nil, "Get global config string: \n%s\n", config.EncodeGlobalConfig(globalConfig)) }
Output:
Index ¶
- Constants
- func EncodeGlobalConfig(conf GlobalConfig) string
- func GetFlagSet() *flag.FlagSet
- func ParseFlag()
- func PrintUsage()
- type ClusterServiceConfig
- type Config
- type EtcdConfig
- type GlobalConfig
- type GrpcConfig
- type ImageConfig
- type LogConfig
- type MysqlConfig
- type PilotServiceConfig
- type ProfilingConfig
- type RepoServiceConfig
Examples ¶
Constants ¶
View Source
const InitialGlobalConfig = `` /* 1625-byte string literal not displayed */
Variables ¶
This section is empty.
Functions ¶
func EncodeGlobalConfig ¶
func EncodeGlobalConfig(conf GlobalConfig) string
func GetFlagSet ¶
func PrintUsage ¶
func PrintUsage()
Types ¶
type ClusterServiceConfig ¶
type Config ¶
type Config struct { Log LogConfig Grpc GrpcConfig Mysql MysqlConfig Etcd EtcdConfig Profiling ProfilingConfig }
type EtcdConfig ¶
type EtcdConfig struct {
Endpoints string `default:"openpitrix-etcd:2379"` // Example: "localhost:2379,localhost:22379,localhost:32379"
}
type GlobalConfig ¶
type GlobalConfig struct { Repo RepoServiceConfig `json:"repo"` Cluster ClusterServiceConfig `json:"cluster"` Runtime map[string]ImageConfig `json:"runtime"` Pilot PilotServiceConfig `json:"pilot"` }
func DecodeInitConfig ¶
func DecodeInitConfig() GlobalConfig
func ParseGlobalConfig ¶
func ParseGlobalConfig(data []byte) (GlobalConfig, error)
func (*GlobalConfig) GetFrontgateAutoDelete ¶ added in v0.1.7
func (g *GlobalConfig) GetFrontgateAutoDelete() bool
func (*GlobalConfig) GetRuntimeImageIdAndUrl ¶ added in v0.1.5
func (g *GlobalConfig) GetRuntimeImageIdAndUrl(apiServer, zone string) (*ImageConfig, error)
type GrpcConfig ¶
type GrpcConfig struct {
ShowErrorCause bool `default:"false"` // show grpc error cause to frontend
}
type ImageConfig ¶
type LogConfig ¶
type LogConfig struct {
Level string `default:"info"` // debug, info, warn, error, fatal
}
type MysqlConfig ¶
type MysqlConfig struct { Host string `default:"openpitrix-db"` Port string `default:"3306"` User string `default:"root"` Password string `default:"password"` Database string `default:"openpitrix"` Disable bool `default:"false"` }
func (*MysqlConfig) GetUrl ¶
func (m *MysqlConfig) GetUrl() string
type PilotServiceConfig ¶
type ProfilingConfig ¶ added in v0.1.5
type ProfilingConfig struct {
Enable bool `default:"false"`
}
type RepoServiceConfig ¶
type RepoServiceConfig struct {
Cron string `json:"cron"`
}
Click to show internal directories.
Click to hide internal directories.