Skip to content

Commit 87f7aad

Browse files
committed
feat(install): add docker
* Update parallel * Update kind * Add dockerfile for agent
1 parent 2090246 commit 87f7aad

File tree

5 files changed

+70
-3
lines changed

5 files changed

+70
-3
lines changed

agent.Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM ubuntu
2+
3+
COPY _out/bin/vega-agent /usr/local/bin/vega-agent
4+
5+
ENTRYPOINT ["/usr/local/bin/vega-agent"]

cmd/vega-install/main.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,15 @@ func run(ctx context.Context) error {
2121
installer.BuildBinary("vega"),
2222
},
2323
},
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+
},
2533
}
2634
for _, step := range steps {
2735
fmt.Println("step:", step.Step().Name)

internal/installer/docker.go

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
}

internal/installer/kind.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,25 @@ import (
1010

1111
// Kind is Kubernetes In Docker (KIND) installer.
1212
type Kind struct {
13-
Bin string
13+
Bin string
14+
Name string
15+
Config string
1416
}
1517

1618
func (k Kind) Run(ctx context.Context) error {
1719
b := k.Bin
1820
if b == "" {
1921
b = "kind"
2022
}
23+
if k.Name == "" {
24+
k.Name = "vega"
25+
}
2126
arg := []string{
2227
"create", "cluster",
23-
"-n", "vega",
28+
"-n", k.Name,
29+
}
30+
if k.Config != "" {
31+
arg = append(arg, "--config", k.Config)
2432
}
2533
cmd := exec.CommandContext(ctx, b, arg...)
2634
cmd.Stdout = os.Stdout

internal/installer/parallel.go

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package installer
22

33
import (
44
"context"
5+
"fmt"
56
"strings"
67

78
"golang.org/x/sync/errgroup"
@@ -41,6 +42,7 @@ func (p *Parallel) Run(ctx context.Context) error {
4142
defer func() {
4243
<-sema
4344
}()
45+
fmt.Println("> step:", s.Step().Name)
4446
return s.Run(ctx)
4547
})
4648
}

0 commit comments

Comments
 (0)