File tree 1 file changed +19
-0
lines changed
content/en/docs/tasks/access-application-cluster
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,23 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
44
44
45
45
1. Verify that the NGINX Ingress controller is running
46
46
47
+ minikube version 1.18.1 or earlier
48
+
47
49
` ` ` shell
48
50
kubectl get pods -n kube-system
49
51
` ` `
50
52
53
+ minikube version 1.19.0 or later
54
+
55
+ ` ` ` shell
56
+ kubectl get pods -n ingress-nginx
57
+ ` ` `
58
+
51
59
{{< note > }}This can take up to a minute.{{< /note > }}
52
60
53
61
Output:
62
+
63
+ minikube version 1.18.1 or earlier
54
64
55
65
` ` ` shell
56
66
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
61
71
nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m
62
72
storage-provisioner 1/1 Running 0 2m
63
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
82
+ ` ` `
64
83
65
84
# # Deploy a hello, world app
66
85
You can’t perform that action at this time.
0 commit comments