Skip to content

Commit 2f64021

Browse files
authored
Merge pull request #26 from pierresouchay/rename_module
REFACTOR Updated references to go mod github.com/haproxytech/haproxy-consul-connect
2 parents 80b575d + 9f04c60 commit 2f64021

File tree

21 files changed

+35
-35
lines changed

21 files changed

+35
-35
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Three components are used :
1313

1414
To handle intentions, HAProxy Connect, sets up a SPOE filter on the application public frontend. On each connection HAProxy checks with HAProxy Connect that the incomming connection is authorized. HAProxy Connect parses the request certificates and in turn calls the Consul agent to know wether it should tell HAProxy to allow or deny the connection.
1515

16-
![architecture](https://github.com/criteo/haproxy-consul-connect/blob/master/docs/architecture.png)
16+
![architecture](https://github.com/haproxytech/haproxy-consul-connect/blob/master/docs/architecture.png)
1717

1818
## Requirements
1919

consul/logger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ type Logger interface {
1010
Warnf(format string, args ...interface{})
1111
// Errorf Display error message
1212
Errorf(format string, args ...interface{})
13-
}
13+
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/criteo/haproxy-consul-connect
1+
module github.com/haproxytech/haproxy-consul-connect
22

33
go 1.12
44

haproxy/certs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"path"
88

9-
"github.com/criteo/haproxy-consul-connect/consul"
9+
"github.com/haproxytech/haproxy-consul-connect/consul"
1010
log "github.com/sirupsen/logrus"
1111
)
1212

haproxy/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"text/template"
1010

11-
"github.com/criteo/haproxy-consul-connect/lib"
11+
"github.com/haproxytech/haproxy-consul-connect/lib"
1212
log "github.com/sirupsen/logrus"
1313
)
1414

haproxy/haproxy.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
"strconv"
88
"time"
99

10-
"github.com/criteo/haproxy-consul-connect/consul"
11-
"github.com/criteo/haproxy-consul-connect/haproxy/dataplane"
12-
"github.com/criteo/haproxy-consul-connect/haproxy/haproxy_cmd"
13-
"github.com/criteo/haproxy-consul-connect/haproxy/state"
14-
"github.com/criteo/haproxy-consul-connect/lib"
1510
spoe "github.com/criteo/haproxy-spoe-go"
11+
"github.com/haproxytech/haproxy-consul-connect/consul"
12+
"github.com/haproxytech/haproxy-consul-connect/haproxy/dataplane"
13+
"github.com/haproxytech/haproxy-consul-connect/haproxy/haproxy_cmd"
14+
"github.com/haproxytech/haproxy-consul-connect/haproxy/state"
15+
"github.com/haproxytech/haproxy-consul-connect/lib"
1616
"github.com/hashicorp/consul/api"
1717
"github.com/prometheus/client_golang/prometheus/promhttp"
1818
log "github.com/sirupsen/logrus"

haproxy/haproxy_cmd/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"sync/atomic"
88
"syscall"
99

10-
"github.com/criteo/haproxy-consul-connect/haproxy/halog"
11-
"github.com/criteo/haproxy-consul-connect/lib"
10+
"github.com/haproxytech/haproxy-consul-connect/haproxy/halog"
11+
"github.com/haproxytech/haproxy-consul-connect/lib"
1212
"github.com/pkg/errors"
1313
log "github.com/sirupsen/logrus"
1414
)

haproxy/haproxy_cmd/cmd_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package haproxy_cmd
33
import (
44
"testing"
55

6-
"github.com/criteo/haproxy-consul-connect/lib"
6+
"github.com/haproxytech/haproxy-consul-connect/lib"
77
"github.com/stretchr/testify/assert"
88
)
99

haproxy/haproxy_cmd/run.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os"
88
"time"
99

10-
"github.com/criteo/haproxy-consul-connect/haproxy/dataplane"
11-
"github.com/criteo/haproxy-consul-connect/lib"
10+
"github.com/haproxytech/haproxy-consul-connect/haproxy/dataplane"
11+
"github.com/haproxytech/haproxy-consul-connect/lib"
1212
)
1313

1414
type Config struct {

haproxy/spoe.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
log "github.com/sirupsen/logrus"
88

9-
"github.com/criteo/haproxy-consul-connect/consul"
109
spoe "github.com/criteo/haproxy-spoe-go"
10+
"github.com/haproxytech/haproxy-consul-connect/consul"
1111
"github.com/hashicorp/consul/agent/connect"
1212
"github.com/hashicorp/consul/api"
1313
"github.com/pkg/errors"

0 commit comments

Comments
 (0)