You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Note: NGINX Kubernetes Gateway can only run in the `nginx-gateway` namespace. This limitation will be addressed in the future releases.
11
13
12
-
You can deploy NGINX Kubernetes Gateway on an existing Kubernetes 1.16+ cluster. The following instructions walk through the steps for deploying on a [kind](https://kind.sigs.k8s.io/) cluster.
13
-
14
-
1. Load the NGINX Kubernetes Gateway image onto your kind cluster:
14
+
1. Clone the repo and change into the `nginx-kubernetes-gateway` directory:
Create a cluster with `kind`. You can follow their [instructions](https://kind.sigs.k8s.io/docs/user/quick-start/#creating-a-cluster), or run the following make command at the root of the repository:
13
+
14
+
```
15
+
make create-kind-cluster
16
+
```
17
+
18
+
## Deploy NGINX Kubernetes Gateway
19
+
20
+
Follow the [installation](./installation.md) instructions to deploy NGINX Kubernetes Gateway on your Kind cluster.
21
+
22
+
## Access NGINX Kubernetes Gateway
23
+
24
+
Forward local ports 8080 and 8443 to ports 80 and 443 of the nginx-gateway Pod:
> Note: NGINX will not listen on any ports until you configure a [Gateway](https://gateway-api.sigs.k8s.io/api-types/gateway/#gateway) resource with a valid listener.
31
+
32
+
## Use NGINX Kubernetes Gateway
33
+
To get started, follow the tutorials in the [examples](../examples/) directory.
0 commit comments