Skip to content

Commit c0ce9c9

Browse files
author
thomasmckay
authored
Merge pull request #120 from thomasmckay/update-imports
change git repo coreos to quay
2 parents cdc620d + b4167c1 commit c0ce9c9

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)

0 commit comments

Comments
 (0)