-
Notifications
You must be signed in to change notification settings - Fork 444
/
gloo.go
231 lines (230 loc) · 5.12 KB
/
gloo.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package services
//import (
// "errors"
// "fmt"
// "io/ioutil"
// "os"
// "os/exec"
// "path/filepath"
// "time"
//
// "github.com/solo-io/gloo/pkg/api/types/v1"
// "github.com/solo-io/gloo/pkg/storage"
// "github.com/solo-io/gloo/pkg/storage/file"
//
// "github.com/solo-io/gloo/test/helpers"
//
// "github.com/onsi/ginkgo"
//
// "github.com/ghodss/yaml"
//)
//
//type GlooFactory struct {
// srcpath string
// gloopath string
// wasbuilt bool
//}
//
//func NewGlooFactory() (*GlooFactory, error) {
// gloopath := os.Getenv("GLOO_BINARY")
//
// if gloopath != "" {
// return &GlooFactory{
// gloopath: gloopath,
// }, nil
// }
// srcpath := filepath.Join(helpers.GlooSoloDirectory(), "cmd", "control-plane")
// gf := &GlooFactory{
// srcpath: srcpath,
// }
// err := gf.build()
// if err != nil {
// return nil, err
// }
// gloopath = filepath.Join(srcpath, "control-plane")
// gf.gloopath = gloopath
// return gf, nil
//}
//
//func (gf *GlooFactory) build() error {
// if gf.srcpath == "" {
// if gf.gloopath == "" {
// return errors.New("can't build gloo and none provided")
// }
// return nil
// }
// gf.wasbuilt = true
//
// cmd := exec.Command("go", "build", "-v", "-i", "-gcflags", "-N -l", "-o", "control-plane", "main.go")
//
// cmd.Dir = gf.srcpath
// cmd.Stdout = ginkgo.GinkgoWriter
// cmd.Stderr = ginkgo.GinkgoWriter
// if err := cmd.Run(); err != nil {
// return err
// }
// return nil
//}
//
//func (gf *GlooFactory) NewGlooInstance() (*GlooInstance, error) {
//
// tmpdir, err := ioutil.TempDir(os.Getenv("HELPER_TMP"), "gloo")
// if err != nil {
// return nil, err
// }
//
// gi := &GlooInstance{
// gloopath: gf.gloopath,
// tmpdir: tmpdir,
// }
//
// if err := gi.initStorage(); err != nil {
// return nil, err
// }
//
// if err != nil {
// return nil, err
// }
// return gi, nil
//}
//
//func (gf *GlooFactory) Clean() error {
// return nil
//}
//
//type GlooInstance struct {
// gloopath string
//
// tmpdir string
// store storage.Interface
// cmd *exec.Cmd
//
// Args []string
//}
//
//func (gi *GlooInstance) TmpDir() string {
// return gi.tmpdir
//}
//
//func (gi *GlooInstance) ConfigDir() string {
// return filepath.Join(gi.TmpDir(), "_gloo_config")
//}
//
//func (gi *GlooInstance) FilesDir() string {
// return filepath.Join(gi.ConfigDir(), "files")
//}
//
//func (gi *GlooInstance) SecretsDir() string {
// return filepath.Join(gi.ConfigDir(), "secrets")
//}
//
//func (gi *GlooInstance) EnvoyPort() uint32 {
// return 8080
//}
//
//func (gi *GlooInstance) EnvoySSLPort() uint32 {
// return 8443
//}
//
//func (gi *GlooInstance) AddUpstream(u *v1.Upstream) error {
// _, err := gi.store.V1().Upstreams().Create(u)
// return err
//}
//
//func (gi *GlooInstance) DeleteUpstream(name string) error {
// return gi.store.V1().Upstreams().Delete(name)
//}
//
//func (gi *GlooInstance) GetUpstream(s string) (*v1.Upstream, error) {
// return gi.store.V1().Upstreams().Get(s)
//}
//
//func (gi *GlooInstance) AddvService(u *v1.VirtualService) error {
// _, err := gi.store.V1().VirtualServices().Create(u)
// return err
//}
//
//func (gi *GlooInstance) DeletevService(name string) error {
// return gi.store.V1().VirtualServices().Delete(name)
//}
//
//func (gi *GlooInstance) AddSecret(name string, secret map[string]string) error {
// os.Mkdir(gi.SecretsDir(), 0755)
// secretfile := filepath.Join(gi.SecretsDir(), name)
//
// data, err := yaml.Marshal(&secret)
// if err != nil {
// return err
// }
// return ioutil.WriteFile(secretfile, data, 0400)
//}
//
//func (gi *GlooInstance) initStorage() error {
// client, err := file.NewStorage(gi.ConfigDir(), time.Hour)
// if err != nil {
// return errors.New("failed to start file config watcher for directory " + gi.ConfigDir())
// }
// err = client.V1().Register()
// if err != nil {
// return errors.New("failed to register file config watcher for directory " + gi.ConfigDir())
// }
// // enable file storage
// if err := os.MkdirAll(gi.FilesDir(), 0755); err != nil {
// return err
// }
// // enable secret storage
// if err := os.MkdirAll(gi.SecretsDir(), 0755); err != nil {
// return err
// }
// gi.store = client
// return nil
//
//}
//func (gi *GlooInstance) Run() error {
// return gi.RunWithPort(8081)
//}
//
//func (gi *GlooInstance) RunWithPort(xdsport uint32) error {
// var cmd *exec.Cmd
// glooargs := []string{
// "--storage.type=file",
// "--storage.refreshrate=1s",
// "--secrets.type=file",
// "--secrets.refreshrate=1s",
// fmt.Sprintf("--xds.port=%d", xdsport),
// }
// glooargs = append(glooargs, gi.Args...)
//
// if os.Getenv("DEBUG_GLOO") != "" {
// dlvargs := append([]string{"--headless", "--listen=:2345", "--log", "exec", gi.gloopath, "--"}, glooargs...)
// cmd = exec.Command("dlv", dlvargs...)
// } else {
// cmd = exec.Command(gi.gloopath, glooargs...)
// }
//
// cmd.Dir = gi.TmpDir()
// cmd.Stdout = ginkgo.GinkgoWriter
// cmd.Stderr = ginkgo.GinkgoWriter
// err := cmd.Start()
// if err != nil {
// return err
// }
// gi.cmd = cmd
// return nil
//}
//
//func (gi *GlooInstance) Clean() error {
// if gi == nil {
// return nil
// }
// if gi.cmd != nil {
// gi.cmd.Process.Kill()
// gi.cmd.Wait()
// }
// if gi.TmpDir() != "" {
// defer os.RemoveAll(gi.TmpDir())
//
// }
//
// return nil
//}