Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.09 KB

running-on-kind.md

File metadata and controls

37 lines (23 loc) · 1.09 KB

Running on kind

This guide walks you through how to run NGINX Gateway Fabric on a kind cluster.

Prerequisites

Prepare 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

Deploy NGINX Gateway Fabric

Follow the installation instructions to deploy NGINX Gateway Fabric on your Kind cluster.

Access NGINX Gateway Fabric

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.

Use NGINX Gateway Fabric

To get started, follow the tutorials in the examples directory.