Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minikube 1.19.0 is namespace changed #28154

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down