Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion content/ngf/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ nodes:
- containerPort: 31437
hostPort: 8080
protocol: TCP
- containerPort:30478
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- containerPort:30478
- containerPort: 30478

hostPort: 8443
protocol: TCP
```

{{< call-out "note" >}}
Expand Down Expand Up @@ -114,7 +117,7 @@ Use `helm` to install NGINX Gateway Fabric, specifying the NodePort configuratio
NGINX Service when it is provisioned:

```shell
helm install ngf oci://ghcr.io/nginx/charts/nginx-gateway-fabric --create-namespace -n nginx-gateway --set nginx.service.type=NodePort --set-json 'nginx.service.nodePorts=[{"port":31437,"listenerPort":80}]'
helm install ngf oci://ghcr.io/nginx/charts/nginx-gateway-fabric --create-namespace -n nginx-gateway --set nginx.service.type=NodePort --set-json 'nginx.service.nodePorts=[{"port":31437,"listenerPort":80}, {"port":30478,"listenerPort":8443}]'
```

{{< call-out "note" >}}
Expand Down