Merge pull request #1045 from ibuildthecloud/dqlite4
Add DQLite support but disabled by the build
Showing
+915 -103
... | ... | @@ -64,6 +64,7 @@ require ( |
github.com/bhendo/go-powershell v0.0.0-20190719160123-219e7fb4e41e // indirect | ||
github.com/bronze1man/goStrongswanVici v0.0.0-20190828090544-27d02f80ba40 // indirect | ||
github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23 // indirect | ||
github.com/canonical/go-dqlite v1.1.0 | ||
github.com/containerd/cgroups v0.0.0-20190923161937-abd0b19954a6 // indirect | ||
github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69 | ||
github.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6 // indirect | ||
... | ... | @@ -75,30 +76,32 @@ require ( |
github.com/containernetworking/plugins v0.8.2 // indirect | ||
github.com/coreos/flannel v0.11.0 | ||
github.com/coreos/go-iptables v0.4.2 | ||
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e | ||
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f | ||
github.com/docker/docker v0.7.3-0.20190731001754-589f1dad8dad | ||
github.com/docker/go-metrics v0.0.1 // indirect | ||
github.com/docker/libnetwork v0.8.0-dev.2.0.20190624125649-f0e46a78ea34 // indirect | ||
github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4 // indirect | ||
github.com/go-bindata/go-bindata v3.1.2+incompatible | ||
github.com/go-sql-driver/mysql v1.4.1 | ||
github.com/gofrs/flock v0.7.1 // indirect | ||
github.com/gogo/googleapis v1.3.0 // indirect | ||
github.com/google/tcpproxy v0.0.0-20180808230851-dfa16c61dad2 | ||
github.com/gorilla/mux v1.7.3 | ||
github.com/gorilla/websocket v1.4.0 | ||
github.com/gorilla/websocket v1.4.1 | ||
github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d // indirect | ||
github.com/juju/testing v0.0.0-20190723135506-ce30eb24acd2 // indirect | ||
github.com/kubernetes-sigs/cri-tools v0.0.0-00010101000000-000000000000 | ||
github.com/lib/pq v1.1.1 | ||
github.com/lxc/lxd v0.0.0-20191108214106-60ea15630455 | ||
github.com/mattn/go-sqlite3 v1.10.0 | ||
github.com/mindprince/gonvml v0.0.0-20190828220739-9ebdce4bb989 // indirect | ||
github.com/natefinch/lumberjack v2.0.0+incompatible | ||
github.com/opencontainers/runc v1.0.0-rc2.0.20190611121236-6cc515888830 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/rakelkar/gonetsh v0.0.0-20190719023240-501daadcadf8 // indirect | ||
github.com/rancher/dynamiclistener v0.1.1-0.20191108205817-245f86cc340a | ||
github.com/rancher/dynamiclistener v0.1.1-0.20191110035254-aaa5bc0d2a07 | ||
github.com/rancher/helm-controller v0.2.2 | ||
github.com/rancher/kine v0.1.2-0.20191107225357-527576e3452f | ||
github.com/rancher/kine v0.2.1 | ||
github.com/rancher/remotedialer v0.2.0 | ||
github.com/rancher/wrangler v0.2.0 | ||
github.com/rancher/wrangler-api v0.2.0 | ||
... | ... | @@ -108,11 +111,12 @@ require ( |
github.com/tchap/go-patricia v2.3.0+incompatible // indirect | ||
github.com/theckman/go-flock v0.7.1 // indirect | ||
github.com/urfave/cli v1.21.0 | ||
go.etcd.io/bbolt v1.3.3 // indirect | ||
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 | ||
golang.org/x/net v0.0.0-20190812203447-cdfb69ac37fc | ||
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3 | ||
google.golang.org/grpc v1.23.0 | ||
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect | ||
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 | ||
k8s.io/api v0.0.0 | ||
k8s.io/apimachinery v0.0.0 | ||
... | ... |
This diff is collapsed.
pkg/cli/cmds/dqlite.go
0 → 100644
pkg/cluster/dqlite.go
0 → 100644
pkg/cluster/encrypt.go
0 → 100644
pkg/cluster/storage.go
0 → 100644
pkg/dqlite/dialer/dial.go
0 → 100644
pkg/dqlite/join.go
0 → 100644
pkg/dqlite/log.go
0 → 100644
pkg/dqlite/pipe/http.go
0 → 100644
pkg/dqlite/pipe/pipe.go
0 → 100644
pkg/dqlite/proxy.go
0 → 100644
Please register or sign in to comment