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
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ and `UDPRoute` -- to configure an HTTP or TCP/UDP load balancer, reverse-proxy,
10
10
on Kubernetes. NGINX Gateway Fabric supports a subset of the Gateway API.
11
11
12
12
For a list of supported Gateway API resources and features, see
13
-
the [Gateway API Compatibility](https://docs.nginx.com/nginx-gateway-fabric/gateway-api-compatibility/) doc.
13
+
the [Gateway API Compatibility](https://docs.nginx.com/nginx-gateway-fabric/overview/gateway-api-compatibility/) doc.
14
14
15
15
Learn about our [design principles](/docs/developer/design-principles.md) and [architecture](https://docs.nginx.com/nginx-gateway-fabric/overview/gateway-architecture/).
This will install the latest stable release. To install the latest version from the `main` branch, specify the
77
-
`--version 0.0.0-edge` flag when installing.
75
+
`ngf` is the name of the release, and can be changed to any name you want. This name is added as a prefix to the Deployment name.
76
+
77
+
If the namespace already exists, you can omit the optional `--create-namespace` flag. If you want the latest version from the `main` branch, add `--version 0.0.0-edge` to your install command.
78
+
79
+
To wait for the Deployment to be ready, you can either add the `--wait` flag to the `helm install` command, or run
Change `<my-release>` to the name you want for your release. If the namespace already exists, you can omit the optional `--create-namespace` flag. If you want the latest version from the **main** branch, add `--version 0.0.0-edge` to your install command.
33
+
`ngf` is the name of the release, and can be changed to any name you want. This name is added as a prefix to the Deployment name.
34
+
35
+
If the namespace already exists, you can omit the optional `--create-namespace` flag. If you want the latest version from the **main** branch, add `--version 0.0.0-edge` to your install command.
36
+
37
+
To wait for the Deployment to be ready, you can either add the `--wait` flag to the `helm install` command, or run the following after installing:
Copy file name to clipboardExpand all lines: site/content/installation/running-on-kind.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,8 @@ make create-kind-cluster
25
25
26
26
Follow the [installation](./how-to/installation/installation.md) instructions to deploy NGINX Gateway Fabric on your Kind cluster.
27
27
28
+
{{<note>}} For `kind` clusters, NodePort services require [extra configuration](https://kind.sigs.k8s.io/docs/user/configuration/#nodeport-with-port-mappings) and LoadBalancer services need [a third-party controller](https://kind.sigs.k8s.io/docs/user/loadbalancer/) like MetalLB for external IP assignment. However, the Helm chart creates a LoadBalancer service by default. To avoid this, you can disable service creation by adding `--set service.create=false` to your Helm command and use the port-forwarding command below instead to try out the examples. {{</note>}}
29
+
28
30
## Access NGINX Gateway Fabric
29
31
30
32
Forward local ports 8080 and 8443 to ports 80 and 443 of the nginx-gateway Pod:
@@ -33,8 +35,8 @@ 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
37
-
> [Gateway](https://gateway-api.sigs.k8s.io/api-types/gateway/#gateway) resource with a valid listener.
38
+
{{<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. {{</note>}}
0 commit comments