Skip to content

Commit fe09368

Browse files
committed
Rename dsbrng25b to dvob
1 parent 2ee4dcc commit fe09368

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
3939
- name: Docker Hub Release
4040
env:
41-
KO_DOCKER_REPO: dsbrng25b
41+
KO_DOCKER_REPO: dvob
4242
run: |
43-
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u dsbrng25b --password-stdin
43+
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u dvob --password-stdin
4444
ko publish -t "${GITHUB_REF##*/}" -t latest -B .
4545
4646
- name: Github Release

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ spec:
115115
spec:
116116
containers:
117117
- name: service1
118-
image: dsbrng25b/k8s-s2s-auth
118+
image: dvob/k8s-s2s-auth
119119
args:
120120
- client
121121
- http://service2.mytest.svc
@@ -217,7 +217,7 @@ spec:
217217
spec:
218218
containers:
219219
- name: service2
220-
image: dsbrng25b/k8s-s2s-auth
220+
image: dvob/k8s-s2s-auth
221221
args:
222222
- server
223223
- --mode
@@ -278,7 +278,7 @@ The decoding of the signature shows an error `base64: invalid input` because in
278278

279279
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`.
280280
```
281-
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
281+
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
282282
```
283283

284284
Test it with curl:
@@ -358,7 +358,7 @@ spec:
358358
spec:
359359
containers:
360360
- name: service2
361-
image: dsbrng25b/k8s-s2s-auth
361+
image: dvob/k8s-s2s-auth
362362
args:
363363
- server
364364
- --mode
@@ -390,7 +390,7 @@ spec:
390390
spec:
391391
containers:
392392
- name: service1
393-
image: dsbrng25b/k8s-s2s-auth
393+
image: dvob/k8s-s2s-auth
394394
args:
395395
- client
396396
- http://service2.mytest.svc
@@ -493,7 +493,7 @@ spec:
493493
spec:
494494
containers:
495495
- name: service2
496-
image: dsbrng25b/k8s-s2s-auth
496+
image: dvob/k8s-s2s-auth
497497
args:
498498
- server
499499
- --mode

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/dsbrng25b/k8s-s2s-auth
1+
module github.com/dvob/k8s-s2s-auth
22

33
go 1.15
44

vault/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: http-server
20-
image: dsbrng25b/k8s-s2s-auth:latest
20+
image: dvob/k8s-s2s-auth:latest
2121
imagePullPolicy: IfNotPresent
2222
args:
2323
- app

0 commit comments

Comments
 (0)