-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[업데이트] Go version 1.21.4 및 에이전트 OS 확장 (Ubuntu 22.04)
- Loading branch information
1 parent
80e72b9
commit 794eb94
Showing
6 changed files
with
92 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,112 @@ | ||
module github.com/cloud-barista/cb-dragonfly | ||
|
||
go 1.15 | ||
go 1.21 | ||
|
||
replace ( | ||
github.com/coreos/bbolt => go.etcd.io/bbolt v1.3.3 | ||
github.com/coreos/go-systemd => github.com/coreos/go-systemd/v22 v22.0.0 | ||
google.golang.org/grpc => google.golang.org/grpc v1.26.0 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.19.10 | ||
k8s.io/client-go => k8s.io/client-go v0.19.10 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.1.0 // indirect | ||
github.com/Scalingo/go-utils v7.1.0+incompatible | ||
github.com/Workiva/go-datastructures v1.0.53 | ||
github.com/bramvdbogaerde/go-scp v1.0.0 | ||
github.com/cloud-barista/cb-log v0.4.0 | ||
github.com/cloud-barista/cb-spider v0.4.5 | ||
github.com/cloud-barista/cb-store v0.4.1 | ||
github.com/confluentinc/confluent-kafka-go v1.7.0 | ||
github.com/coreos/bbolt v1.3.4 // indirect | ||
github.com/go-openapi/spec v0.20.6 // indirect | ||
github.com/go-openapi/swag v0.21.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/google/uuid v1.3.0 | ||
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect | ||
github.com/influxdata/influxdb v1.9.2 // indirect | ||
github.com/influxdata/influxdb1-client v0.0.0-20200827194710-b269163b24ab | ||
github.com/jonboulle/clockwork v0.2.2 // indirect | ||
github.com/labstack/echo/v4 v4.9.0 | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/shaodan/kapacitor-client v0.0.0-20181228024026-84c816949946 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/smartystreets/assertions v1.1.0 // indirect | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/spf13/viper v1.8.1 | ||
github.com/swaggo/echo-swagger v1.1.0 | ||
github.com/swaggo/swag v1.8.2 | ||
github.com/thoas/go-funk v0.9.2 | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966 // indirect | ||
go.etcd.io/bbolt v1.3.5 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 | ||
golang.org/x/net v0.0.0-20220531201128-c960675eff93 | ||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect | ||
google.golang.org/grpc v1.39.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.19.10 | ||
k8s.io/apimachinery v0.22.2 | ||
k8s.io/client-go v0.22.2 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.1.0 // indirect | ||
github.com/KyleBanks/depth v1.2.1 // indirect | ||
github.com/bwmarrin/snowflake v0.3.0 // indirect | ||
github.com/coreos/etcd v3.3.25+incompatible // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect | ||
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/etcd-io/etcd v3.3.25+incompatible // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/go-logr/logr v0.2.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.20.0 // indirect | ||
github.com/go-openapi/spec v0.20.6 // indirect | ||
github.com/go-openapi/swag v0.21.1 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/googleapis/gnostic v0.4.1 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/influxdata/influxdb v1.9.2 // indirect | ||
github.com/jonboulle/clockwork v0.2.2 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/labstack/gommon v0.3.1 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/pelletier/go-toml v1.9.3 // indirect | ||
github.com/smartystreets/assertions v1.1.0 // indirect | ||
github.com/snowzach/rotatefilehook v0.0.0-20180327172521-2f64f265f58c // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14 // indirect | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
github.com/xujiajun/mmap-go v1.0.1 // indirect | ||
github.com/xujiajun/nutsdb v0.6.0 // indirect | ||
github.com/xujiajun/utils v0.0.0-20190123093513-8bf096c4f53b // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.7.0 // indirect | ||
go.uber.org/zap v1.18.1 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect | ||
golang.org/x/tools v0.1.10 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20210719143636-1d5a45f8e492 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
k8s.io/klog/v2 v2.2.0 // indirect | ||
k8s.io/utils v0.0.0-20200729134348-d5654de09c73 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.0.3 // indirect | ||
sigs.k8s.io/yaml v1.2.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters