Skip to content

Commit 4f3247c

Browse files
authored
Merge pull request #97969 from mohatb/patch-5
Update ingress-basic.md
2 parents 468158e + 255de7f commit 4f3247c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/aks/ingress-basic.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,15 @@ helm install nginx-ingress ingress-nginx/ingress-nginx `
292292
Check the load balancer service by using `kubectl get services`.
293293

294294
```console
295-
kubectl get services --namespace ingress-basic -o wide -w nginx-ingress-ingress-nginx-controller
295+
kubectl get services --namespace ingress-basic -o wide -w ingress-nginx-controller
296296
```
297297

298298
When the Kubernetes load balancer service is created for the NGINX ingress controller, an IP address is assigned under *EXTERNAL-IP*, as shown in the following example output:
299299

300300
```
301301
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
302-
nginx-ingress-ingress-nginx-controller LoadBalancer 10.0.74.133 EXTERNAL_IP 80:32486/TCP,443:30953/TCP 44s app.kubernetes.io/component=controller,app.kubernetes.io/instance=nginx-ingress,app.kubernetes.io/name=ingress-nginx
302+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
303+
ingress-nginx-controller LoadBalancer 10.0.65.205 EXTERNAL-IP 80:30957/TCP,443:32414/TCP 1m app.kubernetes.io/component=controller,app.kubernetes.io/instance=ingress-nginx,app.kubernetes.io/name=ingress-nginx
303304
```
304305

305306
No ingress rules have been created yet, so the NGINX ingress controller's default 404 page is displayed if you browse to the external IP address. Ingress rules are configured in the following steps.
@@ -545,9 +546,9 @@ nginx-ingress ingress-basic 1 2020-01-06 19:55:46.3582
545546
Uninstall the releases with the `helm uninstall` command. The following example uninstalls the NGINX ingress deployment.
546547

547548
```
548-
$ helm uninstall nginx-ingress --namespace ingress-basic
549+
$ helm uninstall ingress-nginx --namespace ingress-basic
549550

550-
release "nginx-ingress" uninstalled
551+
release "ingress-nginx" uninstalled
551552
```
552553
553554
Next, remove the two sample applications:

0 commit comments

Comments
 (0)