You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Create a service of --type ClusterIP for httpbun
18
+
```console
19
+
$ kubectl expose deploy httpbun --port 80
20
+
```
21
+
- Create a ingress for httpbun (This command assumes the ingressClass name to be _**nginx**_. Change the ingressClass name below, if you are using a different ingressClass name)
- Get the name of the ingress-nginx-controller pod (This command assumes that the ingress-nginx-controller was installed in the namespace called **_ingress-nginx_**)
26
+
```console
27
+
$ kubectl -n ingress-nginx get po
28
+
```
29
+
- Open a terminal to tail the logs of the ingress-nginx-controller pod
- Note the last line of log messages. Hit the return/enter key a couple of times to get some blank lines. Makes it easier to mark newer log lines from your next step
34
+
- Open a second terminal, to send a request to httpbun (replace the external-ip or LB name as needed)
0 commit comments