-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meta-data: use the metadata package from egoscale v3 #92
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,11 @@ toolchain go1.22.5 | |
|
||
require ( | ||
github.com/exoscale/egoscale v0.102.3 | ||
github.com/exoscale/egoscale/v3 v3.1.4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not use the laatest v3.1.7 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR is pretty old 😄 |
||
github.com/gofrs/uuid v4.4.0+incompatible | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/stretchr/testify v1.9.0 | ||
gopkg.in/fsnotify.v1 v1.4.7 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
k8s.io/api v0.30.2 | ||
|
@@ -34,6 +35,8 @@ require ( | |
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/deepmap/oapi-codegen v1.9.1 // indirect | ||
github.com/diskfs/go-diskfs v1.4.0 // indirect | ||
github.com/elliotwutingfeng/asciiset v0.0.0-20230602022725-51bbb787efab // indirect | ||
github.com/emicklei/go-restful/v3 v3.11.0 // indirect | ||
github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
github.com/felixge/httpsnoop v1.0.3 // indirect | ||
|
@@ -49,7 +52,7 @@ require ( | |
github.com/google/cel-go v0.17.8 // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.3.1 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
|
@@ -64,15 +67,19 @@ require ( | |
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.17 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pkg/xattr v0.4.9 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.16.0 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/cobra v1.7.0 // indirect | ||
github.com/stoewer/go-strcase v1.2.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.10 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.10 // indirect | ||
go.etcd.io/etcd/client/v3 v3.5.10 // indirect | ||
|
@@ -88,7 +95,7 @@ require ( | |
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.26.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb // indirect | ||
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/oauth2 v0.11.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
|
@@ -102,6 +109,7 @@ require ( | |
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect | ||
google.golang.org/grpc v1.59.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/djherbis/times.v1 v1.3.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you probably need to
go mod tidy && go mod vendor