Skip to content

Commit 07d311f

Browse files
Apply suggestions from code review
Co-authored-by: Alan Dooley <[email protected]>
1 parent b797d29 commit 07d311f

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

content/ngf/get-started.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ Request ID: 1b5c8f3a4532ea7d7510cf14ffeb27af
558558

559559
If you're already using NGINX Ingress Controller and want to migrate to NGINX Gateway Fabric, you can use the [ingress2gateway](https://github.com/kubernetes-sigs/ingress2gateway) tool to automatically convert your existing Ingress resources to Gateway API resources.
560560

561-
The ingress2gateway tool is a Kubernetes SIG project that helps convert Ingress resources to Gateway API resources. It supports various Ingress providers, including NGINX Ingress Controller.
561+
The ingress2gateway tool is a Kubernetes SIG project for converting Ingress resources to Gateway API resources. It supports multiple Ingress providers, including NGINX Ingress Controller.
562562

563563
{{< call-out "important" >}}
564564
The ingress2gateway tool is a conversion utility that translates Ingress resources to Gateway API equivalents. It is not a complete end-to-end migration solution. You will need to manually review the converted resources, test functionality, and make additional configuration changes as needed for your specific environment.
@@ -568,18 +568,13 @@ The ingress2gateway tool is a conversion utility that translates Ingress resourc
568568

569569
To convert your existing NGINX Ingress resources to Gateway API resources that work with NGINX Gateway Fabric:
570570

571-
1. Install the ingress2gateway tool following the [installation instructions](https://github.com/kubernetes-sigs/ingress2gateway?tab=readme-ov-file#installation).
572571

573-
2. Run the conversion command for NGINX provider:
574-
```shell
575-
ingress2gateway print --providers=nginx --input-file=<your-ingress-file> > gateway-api-resources.yaml
576-
```
577-
This command will analyze your Ingress resources from the input file and output the equivalent Gateway API resources to a file named `gateway-api-resources.yaml`
572+
First, [install the ingress2gateway tool](https://github.com/kubernetes-sigs/ingress2gateway?tab=readme-ov-file#installation).
578573

579-
3. Review the generated Gateway API resources in the output file and apply them to your cluster:
580-
```shell
581-
kubectl apply -f gateway-api-resources.yaml
582-
```
574+
Then run the conversion command for the NGINX provider:
575+
576+
```shell
577+
ingress2gateway print --providers=nginx --input-file=<your-ingress-file> > gateway-api-resources.yaml
583578

584579
For detailed information about NGINX-specific features and conversion options, see the [NGINX provider documentation](https://github.com/kubernetes-sigs/ingress2gateway/blob/main/pkg/i2gw/providers/nginx/README.md).
585580

0 commit comments

Comments
 (0)