Skip to content

Commit ed7ca2e

Browse files
authored
Update docu for 3.0.2 (#539)
1 parent 001ee47 commit ed7ca2e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ Please remember to provide a good summary, description as well as steps to repro
2222
To run Gatekeeper, you can build it using this command:
2323

2424
```bash
25-
docker buildx build --platform linux/amd64,linux/arm64 -t quay.io/gogatekeeper/gatekeeper:3.0.1 .
25+
docker buildx build --platform linux/amd64,linux/arm64 -t quay.io/gogatekeeper/gatekeeper:3.0.2 .
2626
```
2727

2828
or you can use aleady existing Docker image by running:
2929

3030
```bash
31-
docker run -it --rm quay.io/gogatekeeper/gatekeeper:3.0.1 \
31+
docker run -it --rm quay.io/gogatekeeper/gatekeeper:3.0.2 \
3232
--listen 127.0.0.1:8080 \
3333
--upstream-url http://127.0.0.1:80 \
3434
--discovery-url https://keycloak.example.com/realms/<REALM_NAME> \
@@ -44,16 +44,16 @@ Beside links to archives of binaries we provide also checksum file containing ch
4444
for archives. You can download file gatekeeper-checksum.txt, it contains sha512 checksums e.g.:
4545

4646
```
47-
324b34ece86b6214f835ba9fd79e185864a9005f514458796c22c053de63f428235d2d2a04864065a49c090ad81d2daeb45546544fdd9531a8dea1a43145b8f0 gatekeeper_3.0.1_windows_amd64.zip
48-
38759e75a94d130758cd26958bd9a66b261be8d58a6c7a0fc04845157649aaf628d22a115c95285b405f8e4d6afa8bd78ca8677d1304faf06db93a0cbbc831a6 gatekeeper_3.0.1_linux_amd64.tar.gz
49-
f5322e41b3d78017191246bdd54f99e9b3dd8d5ff9d224e7e81b678a952c1d5aae125ea4c251928969b0a0ea0dc59724308c918993c8227f384f61896f58cbd0 gatekeeper_3.0.1_macOS_amd64.tar.gz
47+
324b34ece86b6214f835ba9fd79e185864a9005f514458796c22c053de63f428235d2d2a04864065a49c090ad81d2daeb45546544fdd9531a8dea1a43145b8f0 gatekeeper_3.0.2_windows_amd64.zip
48+
38759e75a94d130758cd26958bd9a66b261be8d58a6c7a0fc04845157649aaf628d22a115c95285b405f8e4d6afa8bd78ca8677d1304faf06db93a0cbbc831a6 gatekeeper_3.0.2_linux_amd64.tar.gz
49+
f5322e41b3d78017191246bdd54f99e9b3dd8d5ff9d224e7e81b678a952c1d5aae125ea4c251928969b0a0ea0dc59724308c918993c8227f384f61896f58cbd0 gatekeeper_3.0.2_macOS_amd64.tar.gz
5050
```
5151

5252
After you download archive of binary you can calculate it's checksum by using e.g. sha512sum Linux utility:
5353

5454
```
55-
sha512sum /my/path/gatekeeper_3.0.1_linux_amd64.tar.gz
56-
38759e75a94d130758cd26958bd9a66b261be8d58a6c7a0fc04845157649aaf628d22a115c95285b405f8e4d6afa8bd78ca8677d1304faf06db93a0cbbc831a6 gatekeeper_3.0.1_linux_amd64.tar.g
55+
sha512sum /my/path/gatekeeper_3.0.2_linux_amd64.tar.gz
56+
38759e75a94d130758cd26958bd9a66b261be8d58a6c7a0fc04845157649aaf628d22a115c95285b405f8e4d6afa8bd78ca8677d1304faf06db93a0cbbc831a6 gatekeeper_3.0.2_linux_amd64.tar.g
5757
```
5858

5959
As you can see output of command is checksum, you can compare it with the one in gatekeeper-checksum.txt.

docs/content/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ in Keycloak, providing granular role controls over issue tokens.
481481

482482
``` yaml
483483
- name: gatekeeper
484-
image: quay.io/gogatekeeper/gatekeeper:3.0.1
484+
image: quay.io/gogatekeeper/gatekeeper:3.0.2
485485
args:
486486
- --enable-forwarding=true
487487
- --forwarding-username=projecta
@@ -508,7 +508,7 @@ Example setup client credentials grant:
508508

509509
``` yaml
510510
- name: gatekeeper
511-
image: quay.io/gogatekeeper/gatekeeper:3.0.1
511+
image: quay.io/gogatekeeper/gatekeeper:3.0.2
512512
args:
513513
- --enable-forwarding=true
514514
- --forwarding-domains=projecta.svc.cluster.local

e2e/k8s/manifest_test_forwardauth.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,7 @@ spec:
26262626
- -c
26272627
- "while true;do sleep 10;done"
26282628
- name: proxy
2629-
image: quay.io/gogatekeeper/gatekeeper:3.0.1
2629+
image: quay.io/gogatekeeper/gatekeeper:3.0.2
26302630
imagePullPolicy: Never
26312631
args:
26322632
- --client-id=test-client

kube/reverse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
secretName: tls
2222
containers:
2323
- name: proxy
24-
image: quay.io/gogatekeeper/gatekeeper:3.0.1
24+
image: quay.io/gogatekeeper/gatekeeper:3.0.2
2525
imagePullPolicy: Always
2626
args:
2727
- --client-id=broker

0 commit comments

Comments
 (0)