Skip to content

Commit e10c87d

Browse files
authored
minikube 1.19.0 is namespace changed
Ingress namespace is minikube 1.19.0 chage the status kube-system to ingress-nginx.
 Since the output result has also changed, I decided to display only one line. 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 a7de342 commit e10c87d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

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

+19
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,23 @@ 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:
62+
63+
minikube version 1.18.1 or earlier
5464

5565
```shell
5666
NAME READY STATUS RESTARTS AGE
@@ -61,6 +71,15 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
6171
nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m
6272
storage-provisioner 1/1 Running 0 2m
6373
```
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
82+
```
6483

6584
## Deploy a hello, world app
6685

0 commit comments

Comments
 (0)