Skip to content

Commit b56a0db

Browse files
authored
Merge pull request #28355 from Kartik494/ingressControllerNamespace
Updating documentation to show ingress pods are deployed in ingress-nginx namespace for minikube v1.19.0 or later
2 parents 46f7ce6 + bd8f978 commit b56a0db

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

content/en/docs/tasks/access-application-cluster/ingress-minikube.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,46 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
4444

4545
1. Verify that the NGINX Ingress controller is running
4646

47+
48+
{{< tabs name="tab_with_md" >}}
49+
{{% tab name="minikube v1.19 or later" %}}
50+
```shell
51+
kubectl get pods -n ingress-nginx
52+
```
53+
{{< note >}}This can take up to a minute.{{< /note >}}
54+
55+
Output:
56+
57+
```
58+
NAME READY STATUS RESTARTS AGE
59+
ingress-nginx-admission-create-g9g49 0/1 Completed 0 11m
60+
ingress-nginx-admission-patch-rqp78 0/1 Completed 1 11m
61+
ingress-nginx-controller-59b45fb494-26npt 1/1 Running 0 11m
62+
```
63+
{{% /tab %}}
64+
65+
{{% tab name="minikube v1.18.1 or earlier" %}}
66+
```shell
67+
kubectl get pods -n kube-system
68+
```
69+
{{< note >}}This can take up to a minute.{{< /note >}}
70+
71+
Output:
72+
73+
```
74+
NAME READY STATUS RESTARTS AGE
75+
default-http-backend-59868b7dd6-xb8tq 1/1 Running 0 1m
76+
kube-addon-manager-minikube 1/1 Running 0 3m
77+
kube-dns-6dcb57bcc8-n4xd4 3/3 Running 0 2m
78+
kubernetes-dashboard-5498ccf677-b8p5h 1/1 Running 0 2m
79+
nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m
80+
storage-provisioner 1/1 Running 0 2m
81+
```
82+
{{% /tab %}}
83+
{{< /tabs >}}
84+
85+
86+
4787
```shell
4888
kubectl get pods -n ingress-nginx
4989
```
@@ -59,6 +99,7 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
5999
ingress-nginx-controller-59b45fb494-lzmw2 1/1 Running 0 3m28s
60100
```
61101

102+
62103
## Deploy a hello, world app
63104

64105
1. Create a Deployment using the following command:

0 commit comments

Comments
 (0)