Skip to content

Commit b921435

Browse files
committed
Use edge tag in examples and makefile (nginx#192)
* Use edge tag in examples and makefile
1 parent 241b23e commit b921435

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.0.1
1+
VERSION = edge
22
TAG = $(VERSION)
33
PREFIX ?= nginx-kubernetes-gateway
44

deploy/manifests/nginx-gateway.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
- name: nginx-config
8787
mountPath: /etc/nginx
8888
containers:
89-
- image: nginx-kubernetes-gateway:0.0.1
89+
- image: nginx-kubernetes-gateway:edge
9090
imagePullPolicy: IfNotPresent
9191
name: nginx-gateway
9292
volumeMounts:

docs/building-the-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ Before you can build the NGINX Kubernetes Gateway, make sure you have the follow
2222
make PREFIX=myregistry.example.com/nginx-kubernetes-gateway container
2323
```
2424

25-
Set the `PREFIX` variable to the name of the registry you'd like to push the image to. By default, the image will be named `nginx-kubernetes-gateway:0.0.1`.
25+
Set the `PREFIX` variable to the name of the registry you'd like to push the image to. By default, the image will be named `nginx-kubernetes-gateway:edge`.
2626

2727
1. Push the image to your container registry:
2828

2929
```
30-
docker push myregistry.example.com/nginx-kubernetes-gateway:0.0.1
30+
docker push myregistry.example.com/nginx-kubernetes-gateway:edge
3131
```
3232

33-
Make sure to substitute `myregistry.example.com/nginx-kubernetes-gateway` with your registry.
33+
Make sure to substitute `myregistry.example.com/nginx-kubernetes-gateway` with your registry.

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can deploy NGINX Kubernetes Gateway on an existing Kubernetes 1.16+ cluster.
1414
1. Load the NGINX Kubernetes Gateway image onto your kind cluster:
1515

1616
```
17-
kind load docker-image nginx-kubernetes-gateway:0.0.1
17+
kind load docker-image nginx-kubernetes-gateway:edge
1818
```
1919

2020
Make sure to substitute the image name with the name of the image you built.
@@ -107,4 +107,4 @@ Create a service with type `LoadBalancer` using the appropriate manifest for you
107107
108108
```
109109
nslookup <dns-name>
110-
```
110+
```

0 commit comments

Comments
 (0)