Skip to content

Commit

Permalink
Rename dsbrng25b to dvob
Browse files Browse the repository at this point in the history
  • Loading branch information
dvob committed Dec 17, 2020
1 parent 2ee4dcc commit fe09368
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
- name: Docker Hub Release
env:
KO_DOCKER_REPO: dsbrng25b
KO_DOCKER_REPO: dvob
run: |
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u dsbrng25b --password-stdin
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u dvob --password-stdin
ko publish -t "${GITHUB_REF##*/}" -t latest -B .
- name: Github Release
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ spec:
spec:
containers:
- name: service1
image: dsbrng25b/k8s-s2s-auth
image: dvob/k8s-s2s-auth
args:
- client
- http://service2.mytest.svc
Expand Down Expand Up @@ -217,7 +217,7 @@ spec:
spec:
containers:
- name: service2
image: dsbrng25b/k8s-s2s-auth
image: dvob/k8s-s2s-auth
args:
- server
- --mode
Expand Down Expand Up @@ -278,7 +278,7 @@ The decoding of the signature shows an error `base64: invalid input` because in

We can start the server with the `--mode` option set to `jwt-pubkey` to see the authentication with the public key in action. We do this just locally that we don't have to create a configmap for `sa.pub`.
```
docker run -it -p 8080:8080 --rm -v $(pwd)/sa.pub:/sa.pub dsbrng25b/k8s-s2s-auth server --mode jwt-pubkey --pub-key /sa.pub
docker run -it -p 8080:8080 --rm -v $(pwd)/sa.pub:/sa.pub dvob/k8s-s2s-auth server --mode jwt-pubkey --pub-key /sa.pub
```

Test it with curl:
Expand Down Expand Up @@ -358,7 +358,7 @@ spec:
spec:
containers:
- name: service2
image: dsbrng25b/k8s-s2s-auth
image: dvob/k8s-s2s-auth
args:
- server
- --mode
Expand Down Expand Up @@ -390,7 +390,7 @@ spec:
spec:
containers:
- name: service1
image: dsbrng25b/k8s-s2s-auth
image: dvob/k8s-s2s-auth
args:
- client
- http://service2.mytest.svc
Expand Down Expand Up @@ -493,7 +493,7 @@ spec:
spec:
containers:
- name: service2
image: dsbrng25b/k8s-s2s-auth
image: dvob/k8s-s2s-auth
args:
- server
- --mode
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/dsbrng25b/k8s-s2s-auth
module github.com/dvob/k8s-s2s-auth

go 1.15

Expand Down
2 changes: 1 addition & 1 deletion vault/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: http-server
image: dsbrng25b/k8s-s2s-auth:latest
image: dvob/k8s-s2s-auth:latest
imagePullPolicy: IfNotPresent
args:
- app
Expand Down

0 comments on commit fe09368

Please sign in to comment.