-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 98: Switch to go 1.13.8 and use gomodules (#145)
* Updated go version to 1.13 Signed-off-by: anisha.kj <[email protected]> * corrected path Signed-off-by: anisha.kj <[email protected]>
- Loading branch information
Showing
7 changed files
with
554 additions
and
79 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
module github.com/pravega/zookeeper-operator | ||
|
||
go 1.13 | ||
|
||
require ( | ||
cloud.google.com/go v0.55.0 | ||
github.com/PuerkitoBio/purell v1.1.1 | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 | ||
github.com/beorn7/perks v1.0.1 | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/emicklei/go-restful v2.12.0+incompatible | ||
github.com/fsnotify/fsnotify v1.4.9 | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-logr/logr v0.1.0 | ||
github.com/go-logr/zapr v0.1.1 | ||
github.com/go-openapi/jsonpointer v0.19.3 | ||
github.com/go-openapi/jsonreference v0.19.3 | ||
github.com/go-openapi/spec v0.19.7 | ||
github.com/go-openapi/swag v0.19.8 | ||
github.com/gogo/protobuf v1.3.1 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e | ||
github.com/golang/protobuf v1.3.5 | ||
github.com/google/btree v1.0.0 | ||
github.com/google/gofuzz v1.1.0 | ||
github.com/google/uuid v1.1.1 | ||
github.com/googleapis/gnostic v0.4.0 | ||
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 | ||
github.com/hashicorp/golang-lru v0.5.4 | ||
github.com/hpcloud/tail v1.0.0 | ||
github.com/imdario/mergo v0.3.8 | ||
github.com/json-iterator/go v1.1.9 | ||
github.com/mailru/easyjson v0.7.1 | ||
github.com/mattbaird/jsonpatch v0.0.0-20171005235357-81af80346b1a | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd | ||
github.com/modern-go/reflect2 v1.0.1 | ||
github.com/onsi/ginkgo v1.12.0 | ||
github.com/onsi/gomega v1.9.0 | ||
github.com/operator-framework/operator-sdk v0.3.0 | ||
github.com/pborman/uuid v0.0.0-20180906182336-adf5a7427709 | ||
github.com/petar/GoLLRB v0.0.0-20190514000832-33fb24c13b99 | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.0.0 | ||
github.com/prometheus/client_model v0.2.0 | ||
github.com/prometheus/common v0.9.1 | ||
github.com/prometheus/procfs v0.0.11 | ||
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da | ||
github.com/spf13/pflag v1.0.5 | ||
go.uber.org/atomic v1.6.0 | ||
go.uber.org/multierr v1.5.0 | ||
go.uber.org/zap v1.14.1 | ||
golang.org/x/crypto v0.0.0-20200320181102-891825fb96df | ||
golang.org/x/mod v0.2.0 | ||
golang.org/x/net v0.0.0-20200320220750-118fecf932d8 | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d | ||
golang.org/x/sys v0.0.0-20200320181252-af34d8274f85 | ||
golang.org/x/text v0.3.2 | ||
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 | ||
golang.org/x/tools v0.0.0-20200321014904-268ba720d32c | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 | ||
google.golang.org/appengine v1.6.5 | ||
gopkg.in/inf.v0 v0.9.1 | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 | ||
gopkg.in/yaml.v2 v2.2.8 | ||
k8s.io/api v0.0.0-20181126151915-b503174bad59 | ||
k8s.io/apimachinery v0.0.0-20181126123746-eddba98df674 | ||
k8s.io/client-go v0.0.0-20181126152608-d082d5923d3c | ||
k8s.io/code-generator v0.0.0-20180823001027-3dcf91f64f63 | ||
k8s.io/gengo v0.0.0-20200205140755-e0e292d8aa12 | ||
k8s.io/klog v1.0.0 | ||
k8s.io/kube-openapi v0.0.0-20200204173128-addea2498afe | ||
sigs.k8s.io/controller-runtime v0.1.8 | ||
) |
Oops, something went wrong.