// New is used to create a storage client based on our configuration. func New(config Config) (StoreClient, error) { if config.Backend == "" { config.Backend = "etcd" } backendNodes := config.BackendNodes log.Info("Backend nodes set to " + strings.Join(backendNodes, ", ")) switch config.Backend { case "consul": return consul.New(config.BackendNodes, config.Scheme, config.ClientCert, config.ClientKey, config.ClientCaKeys) case "etcd": // Create the etcd client upfront and use it for the life of the process. // The etcdClient is an http.Client and designed to be reused. return etcd.NewEtcdClient(backendNodes, config.ClientCert, config.ClientKey, config.ClientCaKeys) case "zookeeper": return zookeeper.NewZookeeperClient(backendNodes) case "redis": return redis.NewRedisClient(backendNodes) case "env": return env.NewEnvClient() case "dynamodb": table := config.Table log.Info("DynamoDB table set to " + table) return dynamodb.NewDynamoDBClient(table) } return nil, errors.New("Invalid backend") }
// New is used to create a storage client based on our configuration. func New(config Config) (StoreClient, error) { if config.Backend == "" { config.Backend = "etcd" } backendNodes := config.BackendNodes log.Info("Backend nodes set to " + strings.Join(backendNodes, ", ")) switch config.Backend { case "consul": return consul.New(config.BackendNodes, config.Scheme, config.ClientCert, config.ClientKey, config.ClientCaKeys) case "etcd": // Create the etcd client upfront and use it for the life of the process. // The etcdClient is an http.Client and designed to be reused. return etcd.NewEtcdClient(backendNodes, config.ClientCert, config.ClientKey, config.ClientCaKeys, config.BasicAuth, config.Username, config.Password) case "zookeeper": return zookeeper.NewZookeeperClient(backendNodes) case "rancher": return rancher.NewRancherClient(backendNodes) case "redis": return redis.NewRedisClient(backendNodes, config.ClientKey) case "env": return env.NewEnvClient() case "vault": vaultConfig := map[string]string{ "app-id": config.AppID, "user-id": config.UserID, "username": config.Username, "password": config.Password, "token": config.AuthToken, "cert": config.ClientCert, "key": config.ClientKey, "caCert": config.ClientCaKeys, } return vault.New(backendNodes[0], config.AuthType, vaultConfig) case "dynamodb": table := config.Table log.Info("DynamoDB table set to " + table) return dynamodb.NewDynamoDBClient(table) case "stackengine": return stackengine.NewStackEngineClient(backendNodes, config.Scheme, config.ClientCert, config.ClientKey, config.ClientCaKeys, config.AuthToken) } return nil, errors.New("Invalid backend") }
// New is used to create a storage client based on our configuration. func New(config Config) (StoreClient, error) { if config.Backend == "" { config.Backend = "etcd" } backendNodes := config.BackendNodes log.Info("Backend nodes set to " + strings.Join(backendNodes, ", ")) switch config.Backend { case "consul": return consul.New(config.BackendNodes, config.Scheme, config.ClientCert, config.ClientKey, config.ClientCaKeys) case "etcd": // Create the etcd client upfront and use it for the life of the process. // The etcdClient is an http.Client and designed to be reused. return etcd.NewEtcdClient(backendNodes, config.ClientCert, config.ClientKey, config.ClientCaKeys) case "zookeeper": return zookeeper.NewZookeeperClient(backendNodes) case "redis": return redis.NewRedisClient(backendNodes) case "env": return env.NewEnvClient() case "dynamodb": table := config.Table log.Info("DynamoDB table set to " + table) return dynamodb.NewDynamoDBClient(table) case "stackengine": return stackengine.NewStackEngineClient(backendNodes, config.Scheme, config.ClientCert, config.ClientKey, config.ClientCaKeys, config.AuthToken) case "autoscaling": asg := config.Asg region := config.AWSRegion log.Info("Auto Scaling Group set to " + asg) log.Debug("AWS Region set to " + region) return autoscaling.NewAsgClient(asg, ®ion) } return nil, errors.New("Invalid backend") }