Skip to content

Commit eda5cb8

Browse files
authored
minikube 1.19.0 is Ingress namespace chaged
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 Before --- NAME READY STATUS RESTARTS AGE default-http-backend-59868b7dd6-xb8tq 1/1 Running 0 1m kube-addon-manager-minikube 1/1 Running 0 3m kube-dns-6dcb57bcc8-n4xd4 3/3 Running 0 2m kubernetes-dashboard-5498ccf677-b8p5h 1/1 Running 0 2m nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m storage-provisioner 1/1 Running 0 2m --- After --- NAME READY STATUS RESTARTS AGE ingress-nginx-controller-75fbcbcc56-q7lg8 1/1 Running 0 4h41m ---
1 parent af84d42 commit eda5cb8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

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

+8-5
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,25 @@ 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

5563
```shell
5664
NAME READY STATUS RESTARTS AGE
57-
default-http-backend-59868b7dd6-xb8tq 1/1 Running 0 1m
58-
kube-addon-manager-minikube 1/1 Running 0 3m
59-
kube-dns-6dcb57bcc8-n4xd4 3/3 Running 0 2m
60-
kubernetes-dashboard-5498ccf677-b8p5h 1/1 Running 0 2m
6165
nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m
62-
storage-provisioner 1/1 Running 0 2m
6366
```
6467

6568
## Deploy a hello, world app

0 commit comments

Comments
 (0)