diff --git a/Makefile b/Makefile index ac3a193780..9fe9a1fb90 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = edge +VERSION = 0.1.0 TAG = $(VERSION) PREFIX ?= nginx-kubernetes-gateway diff --git a/deploy/manifests/nginx-gateway.yaml b/deploy/manifests/nginx-gateway.yaml index cec3b5b2eb..e7205aa2b9 100644 --- a/deploy/manifests/nginx-gateway.yaml +++ b/deploy/manifests/nginx-gateway.yaml @@ -86,8 +86,8 @@ spec: - name: nginx-config mountPath: /etc/nginx containers: - - image: ghcr.io/nginxinc/nginx-kubernetes-gateway:edge - imagePullPolicy: Always + - image: ghcr.io/nginxinc/nginx-kubernetes-gateway:0.1.0 + imagePullPolicy: IfNotPresent name: nginx-gateway volumeMounts: - name: nginx-config diff --git a/docs/building-the-image.md b/docs/building-the-image.md index 6700e192bb..0378ec300f 100644 --- a/docs/building-the-image.md +++ b/docs/building-the-image.md @@ -12,7 +12,7 @@ Before you can build the NGINX Kubernetes Gateway, make sure you have the follow 1. Clone the repo and change into the `nginx-kubernetes-gateway` directory: ``` - git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git + git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git --branch v0.1.0 cd nginx-kubernetes-gateway ``` @@ -22,12 +22,12 @@ Before you can build the NGINX Kubernetes Gateway, make sure you have the follow make PREFIX=myregistry.example.com/nginx-kubernetes-gateway container ``` - 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`. + 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.1.0`. 1. Push the image to your container registry: ``` - docker push myregistry.example.com/nginx-kubernetes-gateway:edge + docker push myregistry.example.com/nginx-kubernetes-gateway:0.1.0 ``` Make sure to substitute `myregistry.example.com/nginx-kubernetes-gateway` with your registry. diff --git a/docs/installation.md b/docs/installation.md index f59008c030..fe4723f545 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -14,7 +14,7 @@ This guide walks you through how to install NGINX Kubernetes Gateway on a generi 1. Clone the repo and change into the `nginx-kubernetes-gateway` directory: ``` - git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git + git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git --branch v0.1.0 cd nginx-kubernetes-gateway ```