File tree 5 files changed +70
-3
lines changed
5 files changed +70
-3
lines changed Original file line number Diff line number Diff line change
1
+ FROM ubuntu
2
+
3
+ COPY _out/bin/vega-agent /usr/local/bin/vega-agent
4
+
5
+ ENTRYPOINT ["/usr/local/bin/vega-agent" ]
Original file line number Diff line number Diff line change @@ -21,7 +21,15 @@ func run(ctx context.Context) error {
21
21
installer .BuildBinary ("vega" ),
22
22
},
23
23
},
24
- & installer.Kind {},
24
+ & installer.Docker {
25
+ Tags : []string {"vega-agent:latest" },
26
+ File : "agent.Dockerfile" ,
27
+ Context : "." ,
28
+ },
29
+ & installer.Kind {
30
+ Name : "vega" ,
31
+ Config : "_hack/vega.kind.yml" ,
32
+ },
25
33
}
26
34
for _ , step := range steps {
27
35
fmt .Println ("step:" , step .Step ().Name )
Original file line number Diff line number Diff line change
1
+ package installer
2
+
3
+ import (
4
+ "context"
5
+ "os"
6
+ "os/exec"
7
+
8
+ "github.com/go-faster/errors"
9
+ )
10
+
11
+ type Docker struct {
12
+ Bin string
13
+ Tags []string
14
+ File string
15
+ Context string
16
+ }
17
+
18
+ func (d Docker ) Step () StepInfo {
19
+ return StepInfo {Name : "docker:" + d .Tags [0 ]}
20
+ }
21
+
22
+ func (d Docker ) Run (ctx context.Context ) error {
23
+ b := d .Bin
24
+ if b == "" {
25
+ b = "docker"
26
+ }
27
+ if d .Context == "" {
28
+ d .Context = "."
29
+ }
30
+ arg := []string {
31
+ "build" , "-f" , d .File ,
32
+ }
33
+ for _ , tag := range d .Tags {
34
+ arg = append (arg , "-t" , tag )
35
+ }
36
+ arg = append (arg , d .Context )
37
+ cmd := exec .CommandContext (ctx , b , arg ... )
38
+ cmd .Stdout = os .Stdout
39
+ cmd .Stderr = os .Stderr
40
+ if err := cmd .Run (); err != nil {
41
+ return errors .Wrap (err , "create cluster" )
42
+ }
43
+ return nil
44
+ }
Original file line number Diff line number Diff line change @@ -10,17 +10,25 @@ import (
10
10
11
11
// Kind is Kubernetes In Docker (KIND) installer.
12
12
type Kind struct {
13
- Bin string
13
+ Bin string
14
+ Name string
15
+ Config string
14
16
}
15
17
16
18
func (k Kind ) Run (ctx context.Context ) error {
17
19
b := k .Bin
18
20
if b == "" {
19
21
b = "kind"
20
22
}
23
+ if k .Name == "" {
24
+ k .Name = "vega"
25
+ }
21
26
arg := []string {
22
27
"create" , "cluster" ,
23
- "-n" , "vega" ,
28
+ "-n" , k .Name ,
29
+ }
30
+ if k .Config != "" {
31
+ arg = append (arg , "--config" , k .Config )
24
32
}
25
33
cmd := exec .CommandContext (ctx , b , arg ... )
26
34
cmd .Stdout = os .Stdout
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package installer
2
2
3
3
import (
4
4
"context"
5
+ "fmt"
5
6
"strings"
6
7
7
8
"golang.org/x/sync/errgroup"
@@ -41,6 +42,7 @@ func (p *Parallel) Run(ctx context.Context) error {
41
42
defer func () {
42
43
<- sema
43
44
}()
45
+ fmt .Println ("> step:" , s .Step ().Name )
44
46
return s .Run (ctx )
45
47
})
46
48
}
You can’t perform that action at this time.
0 commit comments