forked from Altinity/clickhouse-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace dep with mod which is golang new dependency management system
Signed-off-by: xiancli <xiancli@ebay.com>
- Loading branch information
xiancli
committed
Dec 25, 2019
1 parent
a743757
commit 045e746
Showing
10 changed files
with
235 additions
and
788 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
module github.com/Altinity/clickhouse-operator | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/MakeNowJust/heredoc v1.0.0 | ||
github.com/altinity/clickhouse-operator v0.0.0-20191203104409-a7437572b651 | ||
github.com/d4l3k/messagediff v1.2.1 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/googleapis/gnostic v0.3.1 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect | ||
github.com/hashicorp/golang-lru v0.5.3 // indirect | ||
github.com/imdario/mergo v0.3.8 | ||
github.com/kubernetes-sigs/yaml v1.1.0 | ||
github.com/mailru/go-clickhouse v1.2.0 | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/prometheus/client_golang v1.2.1 | ||
github.com/r3labs/diff v0.0.0-20191120142937-b4ed99a31f5a | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 // indirect | ||
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect | ||
gopkg.in/d4l3k/messagediff.v1 v1.2.1 | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.7 | ||
k8s.io/api v0.17.0 | ||
k8s.io/apimachinery v0.17.0 | ||
k8s.io/client-go v11.0.0+incompatible | ||
k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a // indirect | ||
) | ||
|
||
replace ( | ||
k8s.io/api => k8s.io/api v0.0.0-20190226173710-145d52631d00 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc | ||
k8s.io/client-go => k8s.io/client-go v0.0.0-20190226174127-78295b709ec6 | ||
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20181128191024-b1289fc74931 | ||
k8s.io/gengo => k8s.io/gengo v0.0.0-20190308184658-b90029ef6cd8 | ||
) |
Oops, something went wrong.