We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13da3e2 commit 56e25fbCopy full SHA for 56e25fb
1 file changed
boot.go
@@ -37,28 +37,6 @@ type Secret struct {
37
}
38
39
const configdir = "/home/minio/.minio/"
40
-const templv3 = `{
41
- "version": "3",
42
- "alias": {
43
- "dl": "https://dl.minio.io",
44
- "localhost": "http://localhost:9000",
45
- "play": "https://play.minio.io:9000",
46
- "s3": "https://s3.amazonaws.com"
47
- },
48
- "hosts": {
49
- {{range .}}
50
- "{{.Host}}": {
51
- "access-key-id": "{{.KeyID}}" ,
52
- "secret-access-key": "{{.AccessKey}}"
53
54
- {{end}}
55
- "127.0.0.1:*": {
56
- "access-key-id": "",
57
- "secret-access-key": ""
58
- }
59
60
-}
61
-`
62
63
const templv2 = `{
64
"version": "2",
@@ -135,7 +113,6 @@ func main() {
135
113
136
114
secrets := []Secret{
137
115
{
138
- Host: os.Getenv("POD_IP"),
139
116
KeyID: key,
140
117
AccessKey: access,
141
118
Region: "us-east-1",
0 commit comments