From 364ee3957b39565d7211f27f3ed40975415de6b8 Mon Sep 17 00:00:00 2001 From: Saylor Berman Date: Thu, 27 Feb 2025 08:02:26 -0800 Subject: [PATCH] Add NGF installation steps to README --- nginx-gateway-fabric/appworld/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nginx-gateway-fabric/appworld/README.md b/nginx-gateway-fabric/appworld/README.md index 89f989e..d515f76 100644 --- a/nginx-gateway-fabric/appworld/README.md +++ b/nginx-gateway-fabric/appworld/README.md @@ -1,3 +1,15 @@ # NGINX Gateway Fabric Demo This demo contains the files used in the NGINX Gateway Fabric AppWorld demo. + +To install the Gateway API CRDs: + +```shell +kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.6.1" | kubectl apply -f - +``` + +To install NGINX Gateway Fabric: + +```shell +helm install ngf oci://ghcr.io/nginx/charts/nginx-gateway-fabric --create-namespace -n nginx-gateway +```