Skip to content

Commit 9b07ede

Browse files
authored
minikube 1.19.0 is namespace changed
minikube 1.19.0 Upgrade ingress addon files according to upstream.
 https://github.com/kubernetes/minikube/blob/master/CHANGELOG.md#version-1190-beta0---2021-04-05 kubernetes/minikube#10879
1 parent b2dbcdc commit 9b07ede

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

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

+20-1
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,41 @@ 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+
minikube version 1.18.1 or earlier
48+
4749
```shell
4850
kubectl get pods -n kube-system
4951
```
5052

53+
minikube version 1.19.0 or later
54+
55+
```shell
56+
kubectl get pods -n ingress-nginx
57+
```
58+
5159
{{< note >}}This can take up to a minute.{{< /note >}}
5260

5361
Output:
5462

63+
minikube version 1.18.1 or earlier
64+
5565
```shell
5666
NAME READY STATUS RESTARTS AGE
5767
default-http-backend-59868b7dd6-xb8tq 1/1 Running 0 1m
5868
kube-addon-manager-minikube 1/1 Running 0 3m
5969
kube-dns-6dcb57bcc8-n4xd4 3/3 Running 0 2m
6070
kubernetes-dashboard-5498ccf677-b8p5h 1/1 Running 0 2m
6171
nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m
62-
storage-provisioner 1/1 Running 0 2m
72+
storage-provisioner 1/1 Running
73+
```
74+
75+
minikube version 1.19.0 or later
76+
77+
```shell
78+
NAME READY STATUS RESTARTS AGE
79+
ingress-nginx-admission-create-ckgpj 0/1 Completed 0 15m
80+
ingress-nginx-admission-patch-585xt 0/1 Completed 0 15m
81+
ingress-nginx-controller-5d88495688-b4s8m 1/1 Running 0 15m
6382
```
6483

6584
## Deploy a hello, world app

0 commit comments

Comments
 (0)