Skip to content

Commit 7a06f09

Browse files
committed
docs: build-from-source path, and normalise LICENSE for detection
The referenced GHCR image is private until somebody flips it in the GitHub UI, and there is no REST route for container package visibility, so the documented install path did not actually work for anyone outside the org. Building from source has no dependencies to fetch and takes seconds, so it belongs in the README rather than being assumed. LICENSE had leading whitespace that stopped GitHub detecting it as Apache-2.0.
1 parent 6a9da5b commit 7a06f09

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
Apache License
1+
Apache License
32
Version 2.0, January 2004
43
http://www.apache.org/licenses/
54

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@ kubectl -n <gateway-namespace> get ciliumenvoyconfig
6565
kubectl apply -f deploy/
6666
```
6767

68+
`deploy/deployment.yaml` references `ghcr.io/paperclipinc/pqc-admission-webhook`.
69+
If that image is not pullable for you, build your own, which takes a few seconds
70+
and has no dependencies to fetch:
71+
72+
```sh
73+
docker build -t <your-registry>/pqc-admission-webhook:v1 .
74+
docker push <your-registry>/pqc-admission-webhook:v1
75+
# then set that image in deploy/deployment.yaml
76+
```
77+
6878
### Configuration
6979

7080
| Variable | Default | Meaning |

0 commit comments

Comments
 (0)