forked from solo-io/gloo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nomad.go
364 lines (363 loc) · 9.5 KB
/
nomad.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
package services
//import (
// "fmt"
// "os"
// "os/exec"
// "path/filepath"
//
// "io/ioutil"
//
// "time"
//
// "syscall"
//
// "bytes"
// "strings"
// "text/template"
//
// "github.com/hashicorp/go-multierror"
// "github.com/hashicorp/nomad/api"
// "github.com/onsi/ginkgo"
// "github.com/pkg/errors"
// "github.com/solo-io/gloo/pkg/backoff"
// "github.com/solo-io/go-utils/log"
// "github.com/solo-io/gloo/test/helpers"
//)
//
//const defaultNomadDockerImage = "djenriquez/nomad@sha256:31f63da9ad07b349e02f5d71bd3def416bac72cfcfd79323fd2e99abaaccdd0f"
//
//type NomadFactory struct {
// nomadpath string
// tmpdir string
//}
//
//func NewNomadFactory() (*NomadFactory, error) {
// nomadpath := os.Getenv("NOMAD_BINARY")
//
// if nomadpath != "" {
// return &NomadFactory{
// nomadpath: nomadpath,
// }, nil
// }
//
// // try to grab one form docker...
// tmpdir, err := ioutil.TempDir(os.Getenv("HELPER_TMP"), "nomad")
// if err != nil {
// return nil, err
// }
//
// bash := fmt.Sprintf(`
//set -ex
//CID=$(docker run -d %s /bin/sh -c exit)
//
//# just print the image sha for repoducibility
//echo "Using Nomad Image:"
//docker inspect %s -f "{{.RepoDigests}}"
//
//docker cp $CID:/bin/nomad .
//docker rm -f $CID
// `, defaultNomadDockerImage, defaultNomadDockerImage)
// scriptfile := filepath.Join(tmpdir, "getnomad.sh")
//
// ioutil.WriteFile(scriptfile, []byte(bash), 0755)
//
// cmd := exec.Command("bash", scriptfile)
// cmd.Dir = tmpdir
// cmd.Stdout = ginkgo.GinkgoWriter
// cmd.Stderr = ginkgo.GinkgoWriter
// if err := cmd.Run(); err != nil {
// return nil, err
// }
//
// return &NomadFactory{
// nomadpath: filepath.Join(tmpdir, "nomad"),
// tmpdir: tmpdir,
// }, nil
//}
//
//func (ef *NomadFactory) Clean() error {
// if ef == nil {
// return nil
// }
// if ef.tmpdir != "" {
// os.RemoveAll(ef.tmpdir)
//
// }
// return nil
//}
//
//type NomadInstance struct {
// nomadpath string
// tmpdir string
// cmd *exec.Cmd
// vault *VaultInstance
//
// cleanupJobs []string
//}
//
//func (ef *NomadFactory) NewNomadInstance(vault *VaultInstance) (*NomadInstance, error) {
// // try to grab one form docker...
// tmpdir, err := ioutil.TempDir(os.Getenv("HELPER_TMP"), "nomad")
// if err != nil {
// return nil, err
// }
//
// cmd := exec.Command(ef.nomadpath, "agent", "-dev",
// "--vault-enabled=true",
// "--vault-address=http://127.0.0.1:8200",
// "--vault-token=root",
// )
// cmd.Dir = tmpdir
// cmd.Stdout = ginkgo.GinkgoWriter
// cmd.Stderr = ginkgo.GinkgoWriter
// return &NomadInstance{
// nomadpath: ef.nomadpath,
// tmpdir: tmpdir,
// cmd: cmd,
// vault: vault,
// }, nil
//
//}
//
//func (i *NomadInstance) Silence() {
// i.cmd.Stdout = nil
// i.cmd.Stderr = nil
//}
//
//func (i *NomadInstance) Run() error {
// return i.RunWithPort()
//}
//
//func (i *NomadInstance) RunWithPort() error {
// err := i.cmd.Start()
// if err != nil {
// return err
// }
// time.Sleep(time.Millisecond * 1500)
// return nil
//}
//
//func (i *NomadInstance) Binary() string {
// return i.nomadpath
//}
//
//func (i *NomadInstance) Clean() error {
// if i.cmd != nil {
// if err := i.cmd.Process.Signal(syscall.SIGINT); err != nil {
// return err
// }
// if err := i.cmd.Wait(); err != nil {
// return err
// }
// }
// if i.tmpdir != "" {
// os.RemoveAll(i.tmpdir)
// }
// return nil
//}
//
//func (i *NomadInstance) Cfg() *api.Config {
// return api.DefaultConfig()
//}
//
//func (i *NomadInstance) Exec(args ...string) (string, error) {
// cmd := exec.Command(i.nomadpath, args...)
// cmd.Env = os.Environ()
// // disable DEBUG=1 from getting through to nomad
// for i, pair := range cmd.Env {
// if strings.HasPrefix(pair, "DEBUG") {
// cmd.Env = append(cmd.Env[:i], cmd.Env[i+1:]...)
// break
// }
// }
// out, err := cmd.CombinedOutput()
// if err != nil {
// err = fmt.Errorf("%s (%v)", out, err)
// }
// return string(out), err
//}
//
//func (i *NomadInstance) SetupNomadForE2eTest(envoyPath, outputDirectory string, buildBinaries bool) error {
// if buildBinaries {
// if _, err := downloadNats(outputDirectory); err != nil {
// return errors.Wrap(err, "downloading nats")
// }
// if _, err := downloadPetstore(outputDirectory); err != nil {
// return errors.Wrap(err, "downloading petstore")
// }
//
// if err := helpers.BuildBinaries(outputDirectory, false); err != nil {
// return errors.Wrap(err, "building binaries")
// }
// }
// nomadResourcesDir := filepath.Join(helpers.NomadE2eDirectory(), "nomad_resources")
//
// data := &struct {
// OutputDirectory string
// EnvoyPath string
// }{OutputDirectory: outputDirectory, EnvoyPath: envoyPath}
//
// tmpl, err := template.New("Test_Resources").ParseFiles(filepath.Join(nomadResourcesDir, "install.nomad.tmpl"))
// if err != nil {
// return errors.Wrap(err, "parsing template from install.nomad.tmpl")
// }
//
// buf := &bytes.Buffer{}
// if err := tmpl.ExecuteTemplate(buf, "install.nomad.tmpl", data); err != nil {
// return errors.Wrap(err, "executing template")
// }
//
// err = ioutil.WriteFile(filepath.Join(nomadResourcesDir, "install.nomad"), buf.Bytes(), 0644)
// if err != nil {
// return errors.Wrap(err, "writing generated test resources template")
// }
//
// tmpl, err = template.New("Test_Resources").ParseFiles(filepath.Join(nomadResourcesDir, "testing-resources.nomad.tmpl"))
// if err != nil {
// return errors.Wrap(err, "parsing template from testing-resources.nomad.tmpl")
// }
//
// buf = &bytes.Buffer{}
// if err := tmpl.ExecuteTemplate(buf, "testing-resources.nomad.tmpl", data); err != nil {
// return errors.Wrap(err, "executing template")
// }
//
// err = ioutil.WriteFile(filepath.Join(nomadResourcesDir, "testing-resources.nomad"), buf.Bytes(), 0644)
// if err != nil {
// return errors.Wrap(err, "writing generated test resources template")
// }
//
// _, err = i.vault.Exec("policy", "write", "-address=http://127.0.0.1:8200", "gloo", filepath.Join(nomadResourcesDir, "gloo-policy.hcl"))
// if err != nil {
// return errors.Wrap(err, "setting vault policy")
// }
//
// err = backoff.WithBackoff(func() error {
// // test stuff first
// if _, err := i.Exec("run", filepath.Join(nomadResourcesDir, "testing-resources.nomad")); err != nil {
// return errors.Wrapf(err, "creating nomad resource from testing-resources.nomad")
// }
// i.cleanupJobs = append(i.cleanupJobs, "testing-resources")
// return nil
// }, nil)
//
// if err != nil {
// return errors.Wrap(err, "creating job for testing-resources")
// }
//
// if err := i.waitJobRunning("testing-resources"); err != nil {
// return errors.Wrap(err, "waiting for job to start")
// }
//
// if _, err := i.Exec("run", filepath.Join(nomadResourcesDir, "install.nomad")); err != nil {
// return errors.Wrapf(err, "creating nomad resource from install.nomad")
// }
//
// i.cleanupJobs = append(i.cleanupJobs, "gloo")
// if err := i.waitJobRunning("gloo"); err != nil {
// return errors.Wrap(err, "waiting for job to start")
// }
//
// var ingressAddr string
//
// err = backoff.WithBackoff(func() error {
// addr, err := helpers.ConsulServiceAddress("ingress", "admin")
// if err != nil {
// return errors.Wrap(err, "getting ingress addr")
// }
// ingressAddr = addr
// return nil
// }, nil)
//
// if err != nil {
// return errors.Wrap(err, "creating getting ingress addr")
// }
// _, err = helpers.Curl(ingressAddr, helpers.CurlOpts{Path: "/logging?config=debug"})
// return err
//}
//
//func (i *NomadInstance) waitJobRunning(name string) error {
// return i.waitJobStatus(name, "running")
//}
//
//func (i *NomadInstance) waitJobStatus(job, status string) error {
// cfg := i.Cfg()
// client, err := api.NewClient(cfg)
// if err != nil {
// return err
// }
// statusFunc := func() (string, error) {
// info, _, err := client.Jobs().Info(job, nil)
// if err != nil {
// return "", err
// }
// if *info.Stop {
// return "stopped", nil
// }
// return *info.Status, nil
// }
//
// timeout := time.Second * 20
// interval := time.Millisecond * 1000
// tick := time.Tick(interval)
//
// log.Debugf("waiting %v for pod %v to be %v...", timeout, job, status)
// for {
// select {
// case <-time.After(timeout):
// return fmt.Errorf("timed out waiting for %v to be %v", job, status)
// case <-tick:
// out, err := statusFunc()
// if err != nil {
// return fmt.Errorf("failed getting status: %v", err)
// }
// if strings.Contains(out, "dead") || strings.Contains(out, "failed") {
// out, _ = i.Exec("status", job)
// return errors.Errorf("%v in dead with logs %v", job, out)
// }
// if out == status {
// return nil
// }
// }
// }
//}
//
//func (i *NomadInstance) TeardownNomadE2e() error {
// var result *multierror.Error
// for _, job := range i.cleanupJobs {
//
// out, err := i.Exec("job", "stop", "-purge", job)
// if err != nil {
// multierror.Append(result, errors.Wrapf(err, "stop job failed: %v", out))
// }
// }
// return result.ErrorOrNil()
//}
//func (i *NomadInstance) Logs(job, task string) (string, error) {
// allocId, err := i.getAllocationId(job)
// if err != nil {
// return "", err
// }
// stdout, err := i.Exec("logs", allocId, task)
// if err != nil {
// return "", err
// }
// stderr, err := i.Exec("logs", "-stderr", allocId, task)
// return stdout + "\n\n" + stderr, nil
//}
//
//func (i *NomadInstance) getAllocationId(job string) (string, error) {
// cfg := i.Cfg()
// client, err := api.NewClient(cfg)
// if err != nil {
// return "", err
// }
// allocs, _, err := client.Jobs().Allocations("gloo", false, nil)
// if err != nil {
// return "", err
// }
// if len(allocs) < 1 {
// return "", errors.Errorf("expected at least 1 allocation, got %v", len(allocs))
// }
// return allocs[0].ID, nil
//}