forked from blind-oracle/cortex-tenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
56 lines (43 loc) · 1018 Bytes
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"io/ioutil"
"net/url"
"os"
"strings"
"time"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
)
func configParse(b []byte) (*config, error) {
cfg := &config{}
if err := yaml.UnmarshalStrict(b, cfg); err != nil {
return nil, errors.Wrap(err, "Unable to parse config")
}
if cfg.Timeout == 0 {
cfg.Timeout = 10 * time.Second
}
if cfg.Tenant.Header == "" {
cfg.Tenant.Header = "X-Scope-OrgID"
}
if cfg.Tenant.Label == "" {
cfg.Tenant.Label = "__tenant__"
}
u, err := url.Parse(cfg.Target)
if err != nil {
log.Fatal(err)
}
AUTH_USER_PASS := os.Getenv("AUTH_USER_PASS")
if AUTH_USER_PASS != "" {
u.User = url.UserPassword(strings.Split(AUTH_USER_PASS, ":")[0], strings.Split(AUTH_USER_PASS, ":")[1])
}
cfg.Target = u.String()
return cfg, nil
}
func configLoad(file string) (*config, error) {
y, err := ioutil.ReadFile(file)
if err != nil {
return nil, errors.Wrap(err, "Unable to read config")
}
return configParse(y)
}