@@ -56,7 +56,7 @@ kubectl kustomize https://github.com/nginx/nginx-gateway-fabric/config/crd/gatew
5656To install the latest stable release of NGINX Gateway Fabric in the `nginx-gateway` namespace, run the following command:
5757
5858```shell
59- helm install ngf oci://ghcr.io/nginxinc /charts/nginx-gateway-fabric --create-namespace -n nginx-gateway
59+ helm install ngf oci://ghcr.io/nginx /charts/nginx-gateway-fabric --create-namespace -n nginx-gateway
6060```
6161
6262`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.
@@ -75,7 +75,7 @@ kubectl wait --timeout=5m -n nginx-gateway deployment/ngf-nginx-gateway-fabric -
7575#### Pulling the Chart
7676
7777```shell
78- helm pull oci://ghcr.io/nginxinc /charts/nginx-gateway-fabric --untar
78+ helm pull oci://ghcr.io/nginx /charts/nginx-gateway-fabric --untar
7979cd nginx-gateway-fabric
8080```
8181
@@ -110,13 +110,13 @@ By default, the NGINX Gateway Fabric helm chart deploys a LoadBalancer Service.
110110To use a NodePort Service instead:
111111
112112```shell
113- helm install ngf oci://ghcr.io/nginxinc /charts/nginx-gateway-fabric --create-namespace -n nginx-gateway --set service.type=NodePort
113+ helm install ngf oci://ghcr.io/nginx /charts/nginx-gateway-fabric --create-namespace -n nginx-gateway --set service.type=NodePort
114114```
115115
116116To disable the creation of a Service:
117117
118118```shell
119- helm install ngf oci://ghcr.io/nginxinc /charts/nginx-gateway-fabric --create-namespace -n nginx-gateway --set service.create=false
119+ helm install ngf oci://ghcr.io/nginx /charts/nginx-gateway-fabric --create-namespace -n nginx-gateway --set service.create=false
120120```
121121
122122## Upgrading the Chart
@@ -157,7 +157,7 @@ Warning: kubectl apply should be used on resource created by either kubectl crea
157157To upgrade the release `ngf`, run:
158158
159159```shell
160- helm upgrade ngf oci://ghcr.io/nginxinc /charts/nginx-gateway-fabric -n nginx-gateway
160+ helm upgrade ngf oci://ghcr.io/nginx /charts/nginx-gateway-fabric -n nginx-gateway
161161```
162162
163163This will upgrade to the latest stable release. To upgrade to the latest version from the `main` branch, specify
@@ -230,7 +230,7 @@ To uninstall/delete the release `ngf`:
230230```shell
231231helm uninstall ngf -n nginx-gateway
232232kubectl delete ns nginx-gateway
233- kubectl delete -f https://raw.githubusercontent.com/nginxinc /nginx-gateway-fabric/main/deploy/crds.yaml
233+ kubectl delete -f https://raw.githubusercontent.com/nginx /nginx-gateway-fabric/main/deploy/crds.yaml
234234```
235235
236236These commands remove all the Kubernetes components associated with the release and deletes the release.
0 commit comments