Skip to content

Commit 587d88f

Browse files
committed
Move to NinesStack
1 parent b418716 commit 587d88f

38 files changed

+83
-83
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Sidecar ![Sidecar](views/static/Sidecar.png)
22
=====
33

4-
[![](https://travis-ci.com/Nitro/sidecar.svg?branch=master)](https://travis-ci.com/Nitro/sidecar)
4+
[![](https://travis-ci.com/NinesStack/sidecar.svg?branch=master)](https://travis-ci.com/NinesStack/sidecar)
55
[![](https://images.microbadger.com/badges/image/gonitro/sidecar.svg)](https://microbadger.com/images/gonitro/sidecar)
66
[![](https://images.microbadger.com/badges/version/gonitro/sidecar.svg)](https://microbadger.com/images/gonitro/sidecar "Get your own version badge on microbadger.com")
77

8-
**The main repo for this project is the [Nitro
9-
fork](https://github.com/Nitro/sidecar)**
8+
**The main repo for this project is the [NinesStack
9+
fork](https://github.com/NinesStack/sidecar)**
1010

1111
Sidecar is a dynamic service discovery platform requiring no external
1212
coordination service. It's a peer-to-peer system that uses a gossip protocol
@@ -23,28 +23,28 @@ or can also leverage:
2323
a year it is fast becoming a core microservices architecture component.
2424
Sidecar implements the Envoy proxy SDS, CDS, LDS (V1) and gRPC (V2) APIs.
2525
These allow a standalone Envoy to be entirely configured by Sidecar. This
26-
is best used with Nitro's
26+
is best used with NinesStack's
2727
[Envoy proxy container](https://hub.docker.com/r/gonitro/envoyproxy/tags/).
2828

29-
* [haproxy-api](https://github.com/Nitro/haproxy-api) - A separation layer
29+
* [haproxy-api](https://github.com/NinesStack/haproxy-api) - A separation layer
3030
that allows Sidecar to drive HAproxy in a separate container. It also
3131
allows a local HAproxy to be configured against a remote Sidecar instance.
3232

33-
* [sidecar-executor](https://github.com/Nitro/sidecar-executor) - A Mesos
33+
* [sidecar-executor](https://github.com/NinesStack/sidecar-executor) - A Mesos
3434
executor that integrates with Sidecar, allowing your containers to be
3535
health checked by Sidecar for both service health and service discovery.
3636
Also supports a number of extra features including Vault integration for
3737
secrets management.
3838

39-
* [Superside](https://github.com/Nitro/superside) - A multi-environment
39+
* [Superside](https://github.com/NinesStack/superside) - A multi-environment
4040
console for Sidecar. Has a heads up display, event lists, and graphs
4141
showing what is happening in one or more Sidecar clusters on a live
4242
basis.
4343

4444
* [sidecar-dns](https://github.com/relistan/sidecar-dns) - a working, but
4545
WIP, project to serve DNS SRV records from Sidecar services state.
4646

47-
* [Traefik plugin](https://github.com/Nitro/traefik) - A fork of Traefik
47+
* [Traefik plugin](https://github.com/NinesStack/traefik) - A fork of Traefik
4848
that can be backed by Sidecar. Useful as a gateway from the outside world
4949
into a Sidecar-based services environment. Working to get this plugin
5050
pushed upstream.
@@ -125,7 +125,7 @@ Running it
125125
----------
126126

127127
You can download the latest release from the [GitHub
128-
Releases](https://github.com/Nitro/sidecar/releases) page.
128+
Releases](https://github.com/NinesStack/sidecar/releases) page.
129129

130130
If you'd rather build it yourself, you should install the latest version of
131131
the Go compiler. Sidecar has not been tested with gccgo, only the mainstream
@@ -210,7 +210,7 @@ Defaults are in bold at the end of the line:
210210

211211
* `HAPROXY_DISABLE`: Disable management of HAproxy entirely. This is useful if
212212
you need to run without a proxy or are using something like
213-
[haproxy-api](https://github.com/Nitro/haproxy-api) to manage HAproxy based
213+
[haproxy-api](https://github.com/NinesStack/haproxy-api) to manage HAproxy based
214214
on Sidecar events. You should also use this setting if you are using
215215
Envoy as your proxy.
216216
* `HAPROXY_RELOAD_COMMAND`: The reload command to use for HAproxy **sane defaults**

catalog/services_state.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"sync"
1212
"time"
1313

14-
"github.com/Nitro/memberlist"
15-
"github.com/Nitro/sidecar/output"
16-
"github.com/Nitro/sidecar/service"
14+
"github.com/NinesStack/memberlist"
15+
"github.com/NinesStack/sidecar/output"
16+
"github.com/NinesStack/sidecar/service"
1717
"github.com/armon/go-metrics"
1818
"github.com/relistan/go-director"
1919
log "github.com/sirupsen/logrus"

catalog/services_state_ffjson.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

catalog/services_state_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/Nitro/sidecar/service"
12+
"github.com/NinesStack/sidecar/service"
1313
"github.com/relistan/go-director"
1414
. "github.com/smartystreets/goconvey/convey"
1515
)

catalog/url_listener_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/url"
66
"testing"
77

8-
"github.com/Nitro/sidecar/service"
8+
"github.com/NinesStack/sidecar/service"
99
"github.com/relistan/go-director"
1010
. "github.com/smartystreets/goconvey/convey"
1111
"gopkg.in/jarcoal/httpmock.v1"

catalog/view.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package catalog
33
import (
44
"sort"
55

6-
"github.com/Nitro/memberlist"
7-
"github.com/Nitro/sidecar/service"
6+
"github.com/NinesStack/memberlist"
7+
"github.com/NinesStack/sidecar/service"
88
)
99

1010
// These are functions useful in viewing the contents of the state

catalog/view_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/Nitro/sidecar/service"
7+
"github.com/NinesStack/sidecar/service"
88
. "github.com/smartystreets/goconvey/convey"
99
)
1010

discovery/discovery.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package discovery
33
import (
44
"time"
55

6-
"github.com/Nitro/sidecar/service"
6+
"github.com/NinesStack/sidecar/service"
77
"github.com/relistan/go-director"
88
)
99

discovery/discovery_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package discovery
33
import (
44
"testing"
55

6-
"github.com/Nitro/sidecar/service"
6+
"github.com/NinesStack/sidecar/service"
77
"github.com/relistan/go-director"
88
. "github.com/smartystreets/goconvey/convey"
99
)

discovery/docker_discovery.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
director "github.com/relistan/go-director"
1010
log "github.com/sirupsen/logrus"
1111

12-
"github.com/Nitro/sidecar/service"
12+
"github.com/NinesStack/sidecar/service"
1313
"github.com/fsouza/go-dockerclient"
1414
)
1515

discovery/docker_discovery_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/Nitro/sidecar/service"
8+
"github.com/NinesStack/sidecar/service"
99
"github.com/fsouza/go-dockerclient"
1010
. "github.com/smartystreets/goconvey/convey"
1111
)

discovery/static_discovery.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/relistan/go-director"
1313
log "github.com/sirupsen/logrus"
1414

15-
"github.com/Nitro/sidecar/service"
15+
"github.com/NinesStack/sidecar/service"
1616
)
1717

1818
type Target struct {

discovery/static_discovery_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/Nitro/sidecar/service"
7+
"github.com/NinesStack/sidecar/service"
88
"github.com/relistan/go-director"
99
. "github.com/smartystreets/goconvey/convey"
1010
)

envoy/adapter/adapter.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strconv"
77
"strings"
88

9-
"github.com/Nitro/sidecar/catalog"
10-
"github.com/Nitro/sidecar/service"
9+
"github.com/NinesStack/sidecar/catalog"
10+
"github.com/NinesStack/sidecar/service"
1111
api "github.com/envoyproxy/go-control-plane/envoy/api/v2"
1212
core "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
1313
endpoint "github.com/envoyproxy/go-control-plane/envoy/api/v2/endpoint"

envoy/server.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/Nitro/sidecar/catalog"
11-
"github.com/Nitro/sidecar/config"
12-
"github.com/Nitro/sidecar/envoy/adapter"
10+
"github.com/NinesStack/sidecar/catalog"
11+
"github.com/NinesStack/sidecar/config"
12+
"github.com/NinesStack/sidecar/envoy/adapter"
1313
api "github.com/envoyproxy/go-control-plane/envoy/api/v2"
1414
envoy_discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v2"
1515
"github.com/envoyproxy/go-control-plane/pkg/cache/v2"

envoy/server_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/Nitro/sidecar/catalog"
14-
"github.com/Nitro/sidecar/config"
15-
"github.com/Nitro/sidecar/envoy/adapter"
16-
"github.com/Nitro/sidecar/service"
13+
"github.com/NinesStack/sidecar/catalog"
14+
"github.com/NinesStack/sidecar/config"
15+
"github.com/NinesStack/sidecar/envoy/adapter"
16+
"github.com/NinesStack/sidecar/service"
1717

1818
api "github.com/envoyproxy/go-control-plane/envoy/api/v2"
1919
core "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module github.com/Nitro/sidecar
1+
module github.com/NinesStack/sidecar
22

33
go 1.12
44

55
require (
6-
github.com/Nitro/memberlist v0.0.0-20170522194404-cfac2b5cf519
6+
github.com/NinesStack/memberlist v0.0.0-20170522194404-cfac2b5cf519
77
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38 // indirect
88
github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721 // indirect
99
github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1 // indirect

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
55
github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
66
github.com/Microsoft/go-winio v0.4.11 h1:zoIOcVf0xPN1tnMVbTtEdI+P8OofVk3NObnwOQ6nK2Q=
77
github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA=
8-
github.com/Nitro/memberlist v0.0.0-20170522194404-cfac2b5cf519 h1:0M0GvFnY4WOwfunvvevC2hHAdOjF9BL6cTPaIVUnhFU=
9-
github.com/Nitro/memberlist v0.0.0-20170522194404-cfac2b5cf519/go.mod h1:qsmmjfd30PnKS5ZpYe2vMTplags+V7VRdH3Bd40aFJQ=
8+
github.com/NinesStack/memberlist v0.0.0-20170522194404-cfac2b5cf519 h1:8jCnq6tYQmgQCoRhmg2ome4NGcuAZc5OnG3eN82oJ78=
9+
github.com/NinesStack/memberlist v0.0.0-20170522194404-cfac2b5cf519/go.mod h1:7P4ZHEg2JkfWyySH/AUWFePBxLPtD1WceuIoiPuyeRU=
1010
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw=
1111
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk=
1212
github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38 h1:smF2tmSOzy2Mm+0dGI2AIUHY+w0BUc+4tn40djz7+6U=

haproxy/haproxy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import (
1616
"text/template"
1717
"time"
1818

19-
"github.com/Nitro/sidecar/catalog"
20-
"github.com/Nitro/sidecar/service"
19+
"github.com/NinesStack/sidecar/catalog"
20+
"github.com/NinesStack/sidecar/service"
2121
log "github.com/sirupsen/logrus"
2222
)
2323

haproxy/haproxy_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"testing"
1010
"time"
1111

12-
"github.com/Nitro/sidecar/catalog"
13-
"github.com/Nitro/sidecar/service"
12+
"github.com/NinesStack/sidecar/catalog"
13+
"github.com/NinesStack/sidecar/service"
1414
log "github.com/sirupsen/logrus"
1515
. "github.com/smartystreets/goconvey/convey"
1616
)

healthy/healthy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sync"
1111
"time"
1212

13-
"github.com/Nitro/sidecar/service"
13+
"github.com/NinesStack/sidecar/service"
1414
"github.com/relistan/go-director"
1515
log "github.com/sirupsen/logrus"
1616
)

healthy/healthy_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/Nitro/sidecar/service"
8+
"github.com/NinesStack/sidecar/service"
99
"github.com/relistan/go-director"
1010
. "github.com/smartystreets/goconvey/convey"
1111
)

healthy/service_bridge.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"text/template"
77

8-
"github.com/Nitro/sidecar/discovery"
9-
"github.com/Nitro/sidecar/service"
8+
"github.com/NinesStack/sidecar/discovery"
9+
"github.com/NinesStack/sidecar/service"
1010
"github.com/relistan/go-director"
1111
log "github.com/sirupsen/logrus"
1212
)

healthy/service_bridge_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"testing"
55
"time"
66

7-
"github.com/Nitro/sidecar/discovery"
8-
"github.com/Nitro/sidecar/service"
7+
"github.com/NinesStack/sidecar/discovery"
8+
"github.com/NinesStack/sidecar/service"
99
"github.com/relistan/go-director"
1010
. "github.com/smartystreets/goconvey/convey"
1111
)

main.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package main // import "github.com/Nitro/sidecar"
1+
package main // import "github.com/NinesStack/sidecar"
22

33
import (
44
"context"
@@ -8,15 +8,15 @@ import (
88
"runtime/pprof"
99
"time"
1010

11-
"github.com/Nitro/memberlist"
12-
"github.com/Nitro/sidecar/catalog"
13-
"github.com/Nitro/sidecar/config"
14-
"github.com/Nitro/sidecar/discovery"
15-
"github.com/Nitro/sidecar/envoy"
16-
"github.com/Nitro/sidecar/haproxy"
17-
"github.com/Nitro/sidecar/healthy"
18-
"github.com/Nitro/sidecar/service"
19-
"github.com/Nitro/sidecar/sidecarhttp"
11+
"github.com/NinesStack/memberlist"
12+
"github.com/NinesStack/sidecar/catalog"
13+
"github.com/NinesStack/sidecar/config"
14+
"github.com/NinesStack/sidecar/discovery"
15+
"github.com/NinesStack/sidecar/envoy"
16+
"github.com/NinesStack/sidecar/haproxy"
17+
"github.com/NinesStack/sidecar/healthy"
18+
"github.com/NinesStack/sidecar/service"
19+
"github.com/NinesStack/sidecar/sidecarhttp"
2020
"github.com/armon/go-metrics"
2121
"github.com/relistan/go-director"
2222
log "github.com/sirupsen/logrus"

receiver/http.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io/ioutil"
66
"net/http"
77

8-
"github.com/Nitro/sidecar/catalog"
8+
"github.com/NinesStack/sidecar/catalog"
99
log "github.com/sirupsen/logrus"
1010
)
1111

receiver/http_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/Nitro/sidecar/catalog"
12-
"github.com/Nitro/sidecar/service"
11+
"github.com/NinesStack/sidecar/catalog"
12+
"github.com/NinesStack/sidecar/service"
1313
"github.com/mohae/deepcopy"
1414
"github.com/relistan/go-director"
1515
. "github.com/smartystreets/goconvey/convey"

receiver/receiver.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"sync"
88
"time"
99

10-
"github.com/Nitro/sidecar/catalog"
11-
"github.com/Nitro/sidecar/service"
10+
"github.com/NinesStack/sidecar/catalog"
11+
"github.com/NinesStack/sidecar/service"
1212
"github.com/mohae/deepcopy"
1313
"github.com/relistan/go-director"
1414
log "github.com/sirupsen/logrus"

receiver/receiver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
. "github.com/smartystreets/goconvey/convey"
88
"gopkg.in/jarcoal/httpmock.v1"
9-
"github.com/Nitro/sidecar/catalog"
9+
"github.com/NinesStack/sidecar/catalog"
1010
)
1111

1212
func Test_FetchState(t *testing.T) {

service/service.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"time"
1111

12-
"github.com/Nitro/sidecar/output"
12+
"github.com/NinesStack/sidecar/output"
1313
"github.com/fsouza/go-dockerclient"
1414
log "github.com/sirupsen/logrus"
1515
)

services_delegate.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"math/rand"
66
"time"
77

8-
"github.com/Nitro/memberlist"
9-
"github.com/Nitro/sidecar/catalog"
10-
"github.com/Nitro/sidecar/service"
8+
"github.com/NinesStack/memberlist"
9+
"github.com/NinesStack/sidecar/catalog"
10+
"github.com/NinesStack/sidecar/service"
1111
metrics "github.com/armon/go-metrics"
1212
"github.com/pquerna/ffjson/ffjson"
1313
log "github.com/sirupsen/logrus"

0 commit comments

Comments
 (0)