Skip to content

Commit b4167c1

Browse files
author
Tom McKay
committed
change git repo coreos to quay
1 parent cdc620d commit b4167c1

File tree

25 files changed

+70
-70
lines changed

25 files changed

+70
-70
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ VOLUME /config
2222
ENTRYPOINT ["jwtproxy"]
2323
CMD ["-config", "/config/config.yaml"]
2424

25-
ADD . /go/src/github.com/coreos/jwtproxy/
26-
WORKDIR /go/src/github.com/coreos/jwtproxy/
25+
ADD . /go/src/github.com/quay/jwtproxy/
26+
WORKDIR /go/src/github.com/quay/jwtproxy/
2727

28-
RUN go install -v github.com/coreos/jwtproxy/cmd/jwtproxy
28+
RUN go install -v github.com/quay/jwtproxy/cmd/jwtproxy
2929
RUN rm -r /usr/local/go

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JWT Proxy
22

3-
[![Docker Repository on Quay](https://quay.io/repository/coreos/jwtproxy/status "Docker Repository on Quay")](https://quay.io/repository/coreos/jwtproxy)
3+
[![Docker Repository on Quay](https://quay.io/repository/quay/jwtproxy/status "Docker Repository on Quay")](https://quay.io/repository/quay/jwtproxy)
44

55
The JWT proxy is intended to be used as a complementary service for authenticating, and possibly authorizing requests made between services.
66
There is a forward proxy component, which can be configured to sign outgoing requests to another service, and a reverse proxy component, which can be used to authenticate incoming requests from another service.
@@ -292,5 +292,5 @@ Also, because the key pair is self-signed, the certificate must be trusted by th
292292

293293
```
294294
docker build -t jwtproxy .
295-
docker run -it --rm -v "$PWD/bin":/go/bin -w /go --entrypoint /bin/bash jwtproxy -c "go install -v github.com/coreos/jwtproxy/cmd/jwtproxy"
295+
docker run -it --rm -v "$PWD/bin":/go/bin -w /go --entrypoint /bin/bash jwtproxy -c "go install -v github.com/quay/jwtproxy/cmd/jwtproxy"
296296
```

bill-of-materials.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"project": "github.com/coreos/jwtproxy",
3+
"project": "github.com/quay/jwtproxy",
44
"license": "Apache License 2.0",
55
"confidence": 1
66
},

cmd/jwtproxy/main.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ import (
2222

2323
log "github.com/sirupsen/logrus"
2424

25-
"github.com/coreos/jwtproxy"
26-
"github.com/coreos/jwtproxy/config"
27-
28-
_ "github.com/coreos/jwtproxy/jwt/claims/static"
29-
_ "github.com/coreos/jwtproxy/jwt/keyserver/keyregistry"
30-
_ "github.com/coreos/jwtproxy/jwt/keyserver/keyregistry/keycache/memory"
31-
_ "github.com/coreos/jwtproxy/jwt/keyserver/preshared"
32-
_ "github.com/coreos/jwtproxy/jwt/noncestorage/local"
33-
_ "github.com/coreos/jwtproxy/jwt/privatekey/autogenerated"
34-
_ "github.com/coreos/jwtproxy/jwt/privatekey/preshared"
25+
"github.com/quay/jwtproxy"
26+
"github.com/quay/jwtproxy/config"
27+
28+
_ "github.com/quay/jwtproxy/jwt/claims/static"
29+
_ "github.com/quay/jwtproxy/jwt/keyserver/keyregistry"
30+
_ "github.com/quay/jwtproxy/jwt/keyserver/keyregistry/keycache/memory"
31+
_ "github.com/quay/jwtproxy/jwt/keyserver/preshared"
32+
_ "github.com/quay/jwtproxy/jwt/noncestorage/local"
33+
_ "github.com/quay/jwtproxy/jwt/privatekey/autogenerated"
34+
_ "github.com/quay/jwtproxy/jwt/privatekey/preshared"
3535
)
3636

3737
func main() {

examples/httpserver/Procfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
web: go get github.com/rif/spark && $GOPATH/bin/spark -port 8081 "Welcome to this authenticated web service."
2-
signer: go get github.com/coreos/jwtproxy/cmd/jwtproxy && $GOPATH/bin/jwtproxy -config $(pwd)/signer.yaml
3-
verifier: go get github.com/coreos/jwtproxy/cmd/jwtproxy && $GOPATH/bin/jwtproxy -config $(pwd)/verifier.yaml
2+
signer: go get github.com/quay/jwtproxy/cmd/jwtproxy && $GOPATH/bin/jwtproxy -config $(pwd)/signer.yaml
3+
verifier: go get github.com/quay/jwtproxy/cmd/jwtproxy && $GOPATH/bin/jwtproxy -config $(pwd)/verifier.yaml

examples/kubernetes-httpserver/nginx-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- mountPath: /etc/nginx/conf.d/
3333
name: secret-nginx-volume
3434
- name: jwtproxy
35-
image: quay.io/coreos/jwtproxy
35+
image: quay.io/quay/jwtproxy
3636
ports:
3737
- containerPort: 80
3838
args:

examples/kubernetes-httpserver/tester-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
secretName: secret-tester-config
1010
containers:
1111
- name: jwtproxy
12-
image: quay.io/coreos/jwtproxy
12+
image: quay.io/quay/jwtproxy
1313
args:
1414
- -config
1515
- /etc/jwtproxy/signer.yaml

glide.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/coreos/jwtproxy
1+
package: github.com/quay/jwtproxy
22
import:
33
- package: github.com/sirupsen/logrus
44
version: ^0.10.0

jwt/claims/static/static.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222
"github.com/coreos/go-oidc/jose"
2323
log "github.com/sirupsen/logrus"
2424

25-
"github.com/coreos/jwtproxy/config"
26-
"github.com/coreos/jwtproxy/jwt/claims"
27-
"github.com/coreos/jwtproxy/stop"
25+
"github.com/quay/jwtproxy/config"
26+
"github.com/quay/jwtproxy/jwt/claims"
27+
"github.com/quay/jwtproxy/stop"
2828
)
2929

3030
func init() {

jwt/claims/verifier.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020

2121
"github.com/coreos/go-oidc/jose"
2222

23-
"github.com/coreos/jwtproxy/config"
24-
"github.com/coreos/jwtproxy/stop"
23+
"github.com/quay/jwtproxy/config"
24+
"github.com/quay/jwtproxy/stop"
2525
)
2626

2727
type Constructor func(config.RegistrableComponentConfig) (Verifier, error)

jwt/jwt.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ import (
2727
"github.com/coreos/go-oidc/oidc"
2828
log "github.com/sirupsen/logrus"
2929

30-
"github.com/coreos/jwtproxy/config"
31-
"github.com/coreos/jwtproxy/jwt/keyserver"
32-
"github.com/coreos/jwtproxy/jwt/noncestorage"
30+
"github.com/quay/jwtproxy/config"
31+
"github.com/quay/jwtproxy/jwt/keyserver"
32+
"github.com/quay/jwtproxy/jwt/noncestorage"
3333
)
3434

3535
const (

jwt/jwt_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import (
2727
"github.com/coreos/go-oidc/jose"
2828
"github.com/coreos/go-oidc/key"
2929
"github.com/coreos/go-oidc/oidc"
30-
"github.com/coreos/jwtproxy/config"
31-
"github.com/coreos/jwtproxy/stop"
30+
"github.com/quay/jwtproxy/config"
31+
"github.com/quay/jwtproxy/stop"
3232
"github.com/stretchr/testify/assert"
3333
)
3434

jwt/keyserver/keyregistry/keycache/keycache.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919

2020
"github.com/gregjones/httpcache"
2121

22-
"github.com/coreos/jwtproxy/config"
23-
"github.com/coreos/jwtproxy/stop"
22+
"github.com/quay/jwtproxy/config"
23+
"github.com/quay/jwtproxy/stop"
2424
)
2525

2626
type Constructor func(config.RegistrableComponentConfig) (Cache, error)

jwt/keyserver/keyregistry/keycache/memory/memory.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818
"github.com/gregjones/httpcache"
1919
log "github.com/sirupsen/logrus"
2020

21-
"github.com/coreos/jwtproxy/config"
22-
"github.com/coreos/jwtproxy/jwt/keyserver/keyregistry/keycache"
23-
"github.com/coreos/jwtproxy/stop"
21+
"github.com/quay/jwtproxy/config"
22+
"github.com/quay/jwtproxy/jwt/keyserver/keyregistry/keycache"
23+
"github.com/quay/jwtproxy/stop"
2424
)
2525

2626
func init() {

jwt/keyserver/keyregistry/keyregistry.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ import (
3232
log "github.com/sirupsen/logrus"
3333
"gopkg.in/yaml.v2"
3434

35-
"github.com/coreos/jwtproxy/config"
36-
"github.com/coreos/jwtproxy/jwt"
37-
"github.com/coreos/jwtproxy/jwt/keyserver"
38-
"github.com/coreos/jwtproxy/jwt/keyserver/keyregistry/keycache"
35+
"github.com/quay/jwtproxy/config"
36+
"github.com/quay/jwtproxy/jwt"
37+
"github.com/quay/jwtproxy/jwt/keyserver"
38+
"github.com/quay/jwtproxy/jwt/keyserver/keyregistry/keycache"
3939
)
4040

4141
func init() {

jwt/keyserver/keyserver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121

2222
"github.com/coreos/go-oidc/key"
2323

24-
"github.com/coreos/jwtproxy/config"
25-
"github.com/coreos/jwtproxy/stop"
24+
"github.com/quay/jwtproxy/config"
25+
"github.com/quay/jwtproxy/stop"
2626
)
2727

2828
var (

jwt/keyserver/preshared/preshared.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ import (
2727
"github.com/coreos/go-oidc/key"
2828
"gopkg.in/yaml.v2"
2929

30-
"github.com/coreos/jwtproxy/config"
31-
"github.com/coreos/jwtproxy/jwt/keyserver"
32-
"github.com/coreos/jwtproxy/stop"
30+
"github.com/quay/jwtproxy/config"
31+
"github.com/quay/jwtproxy/jwt/keyserver"
32+
"github.com/quay/jwtproxy/stop"
3333
)
3434

3535
func init() {

jwt/noncestorage/local/local.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919

2020
"gopkg.in/yaml.v2"
2121

22-
"github.com/coreos/jwtproxy/config"
23-
"github.com/coreos/jwtproxy/jwt/noncestorage"
24-
"github.com/coreos/jwtproxy/stop"
22+
"github.com/quay/jwtproxy/config"
23+
"github.com/quay/jwtproxy/jwt/noncestorage"
24+
"github.com/quay/jwtproxy/stop"
2525
"github.com/patrickmn/go-cache"
2626
)
2727

jwt/noncestorage/noncestorage.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"fmt"
1919
"time"
2020

21-
"github.com/coreos/jwtproxy/config"
22-
"github.com/coreos/jwtproxy/stop"
21+
"github.com/quay/jwtproxy/config"
22+
"github.com/quay/jwtproxy/stop"
2323
)
2424

2525
type Constructor func(config.RegistrableComponentConfig) (NonceStorage, error)

jwt/privatekey/autogenerated/autogenerated.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ import (
3131
jose "gopkg.in/square/go-jose.v2"
3232
"gopkg.in/yaml.v2"
3333

34-
"github.com/coreos/jwtproxy/config"
35-
"github.com/coreos/jwtproxy/jwt/keyserver"
36-
"github.com/coreos/jwtproxy/jwt/privatekey"
34+
"github.com/quay/jwtproxy/config"
35+
"github.com/quay/jwtproxy/jwt/keyserver"
36+
"github.com/quay/jwtproxy/jwt/privatekey"
3737
)
3838

3939
func init() {

jwt/privatekey/preshared/preshared.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ import (
2525
"github.com/coreos/go-oidc/key"
2626
"gopkg.in/yaml.v2"
2727

28-
"github.com/coreos/jwtproxy/config"
29-
"github.com/coreos/jwtproxy/jwt/privatekey"
30-
"github.com/coreos/jwtproxy/stop"
28+
"github.com/quay/jwtproxy/config"
29+
"github.com/quay/jwtproxy/jwt/privatekey"
30+
"github.com/quay/jwtproxy/stop"
3131
)
3232

3333
func init() {

jwt/privatekey/privatekey.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919

2020
"github.com/coreos/go-oidc/key"
2121

22-
"github.com/coreos/jwtproxy/config"
23-
"github.com/coreos/jwtproxy/stop"
22+
"github.com/quay/jwtproxy/config"
23+
"github.com/quay/jwtproxy/stop"
2424
)
2525

2626
type PrivateKey interface {

jwt/proxy_handlers.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ import (
2525
"github.com/coreos/goproxy"
2626
log "github.com/sirupsen/logrus"
2727

28-
"github.com/coreos/jwtproxy/config"
29-
"github.com/coreos/jwtproxy/jwt/claims"
30-
"github.com/coreos/jwtproxy/jwt/keyserver"
31-
"github.com/coreos/jwtproxy/jwt/noncestorage"
32-
"github.com/coreos/jwtproxy/jwt/privatekey"
33-
"github.com/coreos/jwtproxy/proxy"
34-
"github.com/coreos/jwtproxy/stop"
28+
"github.com/quay/jwtproxy/config"
29+
"github.com/quay/jwtproxy/jwt/claims"
30+
"github.com/quay/jwtproxy/jwt/keyserver"
31+
"github.com/quay/jwtproxy/jwt/noncestorage"
32+
"github.com/quay/jwtproxy/jwt/privatekey"
33+
"github.com/quay/jwtproxy/proxy"
34+
"github.com/quay/jwtproxy/stop"
3535
)
3636

3737
type StoppableProxyHandler struct {

jwtproxy.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121

2222
log "github.com/sirupsen/logrus"
2323

24-
"github.com/coreos/jwtproxy/config"
25-
"github.com/coreos/jwtproxy/jwt"
26-
"github.com/coreos/jwtproxy/proxy"
27-
"github.com/coreos/jwtproxy/stop"
24+
"github.com/quay/jwtproxy/config"
25+
"github.com/quay/jwtproxy/jwt"
26+
"github.com/quay/jwtproxy/proxy"
27+
"github.com/quay/jwtproxy/stop"
2828
)
2929

3030
// RunProxies is an utility function that starts both the JWT verifier and signer proxies

proxy/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"time"
2828

2929
"github.com/coreos/goproxy"
30-
"github.com/coreos/jwtproxy/stop"
30+
"github.com/quay/jwtproxy/stop"
3131
log "github.com/sirupsen/logrus"
3232
"github.com/tylerb/graceful"
3333
)

0 commit comments

Comments
 (0)