From e10c87d5a15eb9b8818a692997aa5f95db20fba0 Mon Sep 17 00:00:00 2001 From: bringer1092 Date: Fri, 28 May 2021 23:27:47 +0900 Subject: [PATCH] minikube 1.19.0 is namespace changed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 https://github.com/kubernetes/minikube/pull/10879 --- .../ingress-minikube.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/content/en/docs/tasks/access-application-cluster/ingress-minikube.md b/content/en/docs/tasks/access-application-cluster/ingress-minikube.md index 5b3fd114b0a24..7f037dba185ab 100644 --- a/content/en/docs/tasks/access-application-cluster/ingress-minikube.md +++ b/content/en/docs/tasks/access-application-cluster/ingress-minikube.md @@ -44,13 +44,23 @@ This page shows you how to set up a simple Ingress which routes requests to Serv 1. Verify that the NGINX Ingress controller is running + minikube version 1.18.1 or earlier + ```shell kubectl get pods -n kube-system ``` + minikube version 1.19.0 or later + + ```shell + kubectl get pods -n ingress-nginx + ``` + {{< note >}}This can take up to a minute.{{< /note >}} Output: + + minikube version 1.18.1 or earlier ```shell 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 nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m storage-provisioner 1/1 Running 0 2m ``` + + minikube version 1.19.0 or later + + ```shell + NAME READY STATUS RESTARTS AGE + ingress-nginx-admission-create-ckgpj 0/1 Completed 0 15m + ingress-nginx-admission-patch-585xt 0/1 Completed 0 15m + ingress-nginx-controller-5d88495688-b4s8m 1/1 Running 0 15m + ``` ## Deploy a hello, world app