Skip to content

Commit 0256adb

Browse files
feat: improve composite tasks logging (#2876)
Co-authored-by: Rémy Léone <rleone@scaleway.com>
1 parent 30fcb4a commit 0256adb

6 files changed

Lines changed: 521 additions & 75 deletions

File tree

go.mod

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ go 1.19
44

55
require (
66
github.com/alecthomas/assert v1.0.0
7-
github.com/briandowns/spinner v1.23.0
87
github.com/c-bata/go-prompt v0.2.5
98
github.com/chzyer/readline v1.5.1
109
github.com/containerd/console v1.0.3
@@ -19,6 +18,9 @@ require (
1918
github.com/kubernetes-client/go-base v0.0.0-20190205182333-3d0e39759d98
2019
github.com/mattn/go-colorable v0.1.13
2120
github.com/mattn/go-isatty v0.0.17
21+
github.com/moby/buildkit v0.11.4
22+
github.com/opencontainers/go-digest v1.0.0
23+
github.com/pkg/errors v0.9.1
2224
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.14.0.20230318120603-8df14b12fd02
2325
github.com/spf13/cobra v1.6.1
2426
github.com/spf13/pflag v1.0.5
@@ -29,18 +31,52 @@ require (
2931
)
3032

3133
require (
34+
github.com/Microsoft/go-winio v0.5.2 // indirect
3235
github.com/alecthomas/colour v0.1.0 // indirect
3336
github.com/alecthomas/repr v0.0.0-20210801044451-80ca428c5142 // indirect
3437
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
38+
github.com/containerd/containerd v1.6.18 // indirect
39+
github.com/containerd/continuity v0.3.0 // indirect
40+
github.com/containerd/typeurl v1.0.2 // indirect
3541
github.com/davecgh/go-spew v1.1.1 // indirect
42+
github.com/docker/distribution v2.8.1+incompatible // indirect
3643
github.com/etdub/goparsetime v0.0.0-20160315173935-ea17b0ac3318 // indirect
44+
github.com/go-logr/logr v1.2.3 // indirect
45+
github.com/go-logr/stdr v1.2.2 // indirect
46+
github.com/gofrs/flock v0.8.1 // indirect
47+
github.com/gogo/googleapis v1.4.1 // indirect
48+
github.com/gogo/protobuf v1.3.2 // indirect
49+
github.com/golang/protobuf v1.5.2 // indirect
50+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
51+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
52+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
3753
github.com/inconshreveable/mousetrap v1.0.1 // indirect
3854
github.com/mattn/go-runewidth v0.0.9 // indirect
3955
github.com/mattn/go-tty v0.0.3 // indirect
40-
github.com/pkg/errors v0.8.1 // indirect
56+
github.com/moby/patternmatcher v0.5.0 // indirect
57+
github.com/moby/sys/signal v0.7.0 // indirect
58+
github.com/morikuni/aec v1.0.0 // indirect
59+
github.com/opencontainers/image-spec v1.0.3-0.20220303224323-02efb9a75ee1 // indirect
4160
github.com/pkg/term v1.1.0 // indirect
4261
github.com/pmezard/go-difflib v1.0.0 // indirect
4362
github.com/sergi/go-diff v1.2.0 // indirect
63+
github.com/sirupsen/logrus v1.9.0 // indirect
64+
github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa // indirect
65+
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea // indirect
66+
github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f // indirect
67+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.29.0 // indirect
68+
go.opentelemetry.io/otel v1.4.1 // indirect
69+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.4.1 // indirect
70+
go.opentelemetry.io/otel/sdk v1.4.1 // indirect
71+
go.opentelemetry.io/otel/trace v1.4.1 // indirect
72+
go.opentelemetry.io/proto/otlp v0.12.0 // indirect
73+
golang.org/x/crypto v0.2.0 // indirect
74+
golang.org/x/net v0.4.0 // indirect
75+
golang.org/x/sync v0.1.0 // indirect
4476
golang.org/x/sys v0.6.0 // indirect
77+
golang.org/x/time v0.1.0 // indirect
78+
google.golang.org/genproto v0.0.0-20220706185917-7780775163c4 // indirect
79+
google.golang.org/grpc v1.50.1 // indirect
80+
google.golang.org/protobuf v1.28.1 // indirect
4581
gopkg.in/yaml.v2 v2.4.0 // indirect
4682
)

0 commit comments

Comments
 (0)