@@ -44,6 +44,46 @@ 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
+
48
+ {{< tabs name=" tab_with_md" > }}
49
+ {{% tab name=" minikube v1.19 or later" %}}
50
+ ` ` ` shell
51
+ kubectl get pods -n ingress-nginx
52
+ ` ` `
53
+ {{< note > }}This can take up to a minute.{{< /note > }}
54
+
55
+ Output:
56
+
57
+ ```
58
+ NAME READY STATUS RESTARTS AGE
59
+ ingress-nginx-admission-create-g9g49 0/1 Completed 0 11m
60
+ ingress-nginx-admission-patch-rqp78 0/1 Completed 1 11m
61
+ ingress-nginx-controller-59b45fb494-26npt 1/1 Running 0 11m
62
+ ```
63
+ {{% /tab %}}
64
+
65
+ {{% tab name="minikube v1.18.1 or earlier" %}}
66
+ ```shell
67
+ kubectl get pods -n kube-system
68
+ ```
69
+ {{< note >}}This can take up to a minute.{{< /note >}}
70
+
71
+ Output:
72
+
73
+ ```
74
+ NAME READY STATUS RESTARTS AGE
75
+ default-http-backend-59868b7dd6-xb8tq 1/1 Running 0 1m
76
+ kube-addon-manager-minikube 1/1 Running 0 3m
77
+ kube-dns-6dcb57bcc8-n4xd4 3/3 Running 0 2m
78
+ kubernetes-dashboard-5498ccf677-b8p5h 1/1 Running 0 2m
79
+ nginx-ingress-controller-5984b97644-rnkrg 1/1 Running 0 1m
80
+ storage-provisioner 1/1 Running 0 2m
81
+ ```
82
+ {{% /tab %}}
83
+ {{< /tabs >}}
84
+
85
+
86
+
47
87
```shell
48
88
kubectl get pods -n ingress-nginx
49
89
```
@@ -59,6 +99,7 @@ This page shows you how to set up a simple Ingress which routes requests to Serv
59
99
ingress-nginx-controller-59b45fb494-lzmw2 1/1 Running 0 3m28s
60
100
```
61
101
102
+
62
103
## Deploy a hello, world app
63
104
64
105
1 . Create a Deployment using the following command:
0 commit comments