@@ -56,7 +56,7 @@ kubectl kustomize https://github.com/nginx/nginx-gateway-fabric/config/crd/gatew
56
56
To install the latest stable release of NGINX Gateway Fabric in the `nginx-gateway` namespace, run the following command:
57
57
58
58
```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
60
60
```
61
61
62
62
`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 -
75
75
#### Pulling the Chart
76
76
77
77
```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
79
79
cd nginx-gateway-fabric
80
80
```
81
81
@@ -110,13 +110,13 @@ By default, the NGINX Gateway Fabric helm chart deploys a LoadBalancer Service.
110
110
To use a NodePort Service instead:
111
111
112
112
```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
114
114
```
115
115
116
116
To disable the creation of a Service:
117
117
118
118
```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
120
120
```
121
121
122
122
## Upgrading the Chart
@@ -157,7 +157,7 @@ Warning: kubectl apply should be used on resource created by either kubectl crea
157
157
To upgrade the release `ngf`, run:
158
158
159
159
```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
161
161
```
162
162
163
163
This 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`:
230
230
```shell
231
231
helm uninstall ngf -n nginx-gateway
232
232
kubectl 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
234
234
```
235
235
236
236
These commands remove all the Kubernetes components associated with the release and deletes the release.
0 commit comments