Skip to content

Commit 9f23e63

Browse files
committed
bring back whoami
1 parent f18feb5 commit 9f23e63

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/developer/quickstart.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ This command will build the binary and output it to the `/build/.out` directory.
4646
To build an NGINX Kubernetes Gateway container image from source run the following make command:
4747
4848
```shell
49-
make container
49+
make TAG=$(whoami) container
5050
```
5151
52-
This will build the docker image `nginx-kubernetes-gateway:edge`.
52+
This will build the docker image `nginx-kubernetes-gateway:<your-user>`.
5353
5454
## Deploy on Kind
5555
@@ -62,7 +62,7 @@ This will build the docker image `nginx-kubernetes-gateway:edge`.
6262
2. Load the previously built image onto your `kind` cluster:
6363
6464
```shell
65-
kind load docker-image nginx-kubernetes-gateway:edge
65+
kind load docker-image nginx-kubernetes-gateway:$(whoami)
6666
```
6767
6868
3. Modify the image name and image pull policy for the `nginx-gateway` container in the
@@ -75,7 +75,7 @@ This will build the docker image `nginx-kubernetes-gateway:edge`.
7575
`deployment.yaml`:
7676
7777
```shell
78-
cat deploy/manifests/deployment.yaml | sed "s|image: ghcr.io/nginxinc/nginx-kubernetes-gateway.*|image: nginx-kubernetes-gateway:edge|" | sed "s|imagePullPolicy: Always|imagePullPolicy: IfNotPresent|" | kubectl apply -f -
78+
cat deploy/manifests/deployment.yaml | sed "s|image: ghcr.io/nginxinc/nginx-kubernetes-gateway.*|image: nginx-kubernetes-gateway:$(whoami)|" | sed "s|imagePullPolicy: Always|imagePullPolicy: IfNotPresent|" | kubectl apply -f -
7979
```
8080
8181
### Run Examples

0 commit comments

Comments
 (0)