This guide walks you through how to run NGINX Gateway Fabric on a kind cluster.
Create a cluster with kind
. You can follow
their instructions, or run the following make
command at the root of the repository:
make create-kind-cluster
Follow the installation instructions to deploy NGINX Gateway Fabric on your Kind cluster.
Forward local ports 8080 and 8443 to ports 80 and 443 of the nginx-gateway Pod:
kubectl -n nginx-gateway port-forward <pod-name> 8080:80 8443:443
Note: NGINX will not listen on any ports until you configure a Gateway resource with a valid listener.
To get started, follow the tutorials in the examples directory.