With Minikube, making a request to the function is similar to:
http POST knative-vertx-asciidoctor.default.10.101.169.49.sslip.io @README.adoc
You should see HTML in the response.
Note
|
If your system is not able to resolve sslip.io names, extract the IP from the URL and try something this:
http POST 10.101.169.49 'Host:knative-vertx-asciidoctor.default.10.101.169.49.sslip.io' @README.adoc
|
You should also see pods for your service:
You should see something like:
NAME READY STATUS RESTARTS AGE
knative-vertx-asciidoctor-mlhwq-deployment-5cc999bdb7-jx2ff 3/3 Running 0 2m5s
After a while, you can check that the Knative auto-scaler has removed all pods:
You should see something like:
Issue a new request, and see that new pods have been created again.