This how-to shows you how to deploy a Vert.x-based Knative service.
-
You will write a service that accepts Asciidoc text, and produces an HTML rendering with Asciidoctor.
-
This service will be written in Kotlin.
-
A container image with the function will be created with Jib.
-
This service will be deployed with Knative/serving.
-
A text editor or IDE
-
Java 11 higher
-
Maven or Gradle
-
Docker
-
A working Kubernetes cluster with Knative/serving.
Knative starts container images (3 by default) to respond to requests, and scales down to 0 after some delay without traffic. A "function" served by Knative/serving is simply an HTTP service written in any language, and packaged as a container image.
Vert.x is ideal for writing Knative services on the JVM, because:
-
Vert.x applications start very fast since there is no magic happening at run time,
-
GraalVM can be used compilation to further reduce the startup and memory footprint (out of the scope of this how-to),
-
Vert.x applications are resource-efficient and remain responsive even under heavy load,
-
Vert.x offers a large ecosystem of reactive clients to other middlewares (databases, messaging, etc.),
-
a main method / function suffices to bootstrap a Vert.x application!
The code of this project contains Maven and Gradle build files that are functionally equivalent.
Here is the content of the build.gradle.kts
file that you should be using:
link:build.gradle.kts[role=include]
-
We need Kotlin,
vertx-web
andasciidoctorj
. -
The Gradle application plugin allows us to run the application locally with the
run
command. -
Jib configuration to produce an image.
The service exposes an HTTP server. Asciidoc is passed to the function through HTTP POST requests. For each request, Asciidoctor is used to perform the conversion to HTML:
link:src/main/kotlin/io/vertx/howtos/knative/serving/App.kt[role=include]
-
We create a Vert.x context.
-
We configure a Asciidoctor render.
-
We install an HTTP request body handler, so we can just process the whole body rather than manually assemble buffers.
-
For each request, we render the HTML from the Asciidoc.
We could have written the Vert.x code as a verticle, but doing so in the main
function reduces the boilerplate code since we would only be deploying a single verticle here anyway.
We can easily test that the service works:
-
from your IDE, run the
main
function, or -
with Gradle:
./gradlew run
(Linux, macOS) orgradle run
(Windows). -
with Maven:
mvn compile exec:java
.
You can then upload the content of an Asciidoc file, like the README.adoc
file at the root of this repository.
With HTTPie, you would run a command similar to:
http POST :8080/ @README.adoc
You should go to the Knative documentation for installation instructions.
The commands in this how-to assume that you have installed Knative using quickstart and Minikube.
The Jib plugin in your Gradle or Maven build will automatically assemble a container image with the correct entry point to run the application, and port 8080 being exposed. The container image then has to be pushed to your favorite repository.
If you are using Minikube, you can directly build and tag the container image:
eval $(minikube docker-env -p knative)
./gradlew jibDockerBuild # or mvn package jib:dockerBuild
Docker should then list the image:
docker image ls
You should see something like:
REPOSITORY TAG IMAGE ID (...) dev.local/jponge/knative-vertx-asciidoctor latest 4ca7aafd590c dev.local/jponge/knative-vertx-asciidoctor v1 4ca7aafd590c (...)
Here is the descriptor in file service.yaml
for exposing our service with Knative/serving:
link:service.yaml[role=include]
We can then apply the configuration and check that the service is available:
kubectl apply -f service.yaml
You should see something like:
service.serving.knative.dev/knative-vertx-asciidoctor created
Then:
kubectl get ksvc
You should see something like:
NAME URL LATESTCREATED LATESTREADY READY REASON knative-vertx-asciidoctor http://knative-vertx-asciidoctor.default.10.101.169.49.sslip.io knative-vertx-asciidoctor-00001 knative-vertx-asciidoctor-00001 True
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 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:
kubectl get pods
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:
kubectl get pods
You should see something like:
No resources found.
Issue a new request, and see that new pods have been created again.
-
We wrote a Knative service with Vert.x and Kotlin that renders Asciidoc text to HTML.
-
We built a container image.
-
We deployed this service with Knative/serving.