Hello World - Kotlin

A simple web app written in Kotlin using Ktor that you can use for testing. It reads in an env variable TARGET and prints “Hello ${TARGET}”. If TARGET is not specified, it will use “World” as the TARGET.

Follow the steps below to create the sample code and then deploy the app to your cluster. You can also download a working copy of the sample, by running the following commands:

  1. git clone -b "release-0.24" https://github.com/knative/docs knative-docs
  2. cd knative-docs/docs/serving/samples/hello-world/helloworld-kotlin

Before you begin

  • A Kubernetes cluster with Knative installed and DNS configured. Follow the installation instructions if you need to create one.
  • Docker installed and running on your local machine, and a Docker Hub account configured (we’ll use it for a container registry).

Recreating the sample code

  1. Create a new directory and cd into it:
  1. mkdir hello
  2. cd hello
  1. Create a file named Main.kt at src/main/kotlin/com/example/hello and copy the code block below into it:
  1. mkdir -p src/main/kotlin/com/example/hello
  1. package com.example.hello
  2. import io.ktor.application.*
  3. import io.ktor.http.*
  4. import io.ktor.response.*
  5. import io.ktor.routing.*
  6. import io.ktor.server.engine.*
  7. import io.ktor.server.netty.*
  8. fun main(args: Array<String>) {
  9. val target = System.getenv("TARGET") ?: "World"
  10. val port = System.getenv("PORT") ?: "8080"
  11. embeddedServer(Netty, port.toInt()) {
  12. routing {
  13. get("/") {
  14. call.respondText("Hello $target!\n", ContentType.Text.Html)
  15. }
  16. }
  17. }.start(wait = true)
  18. }
  1. Switch back to hello directory

  2. Create a new file, build.gradle and copy the following setting

  1. plugins {
  2. id "org.jetbrains.kotlin.jvm" version "1.4.10"
  3. }
  4. apply plugin: 'application'
  5. mainClassName = 'com.example.hello.MainKt'
  6. jar {
  7. manifest {
  8. attributes 'Main-Class': mainClassName
  9. }
  10. from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
  11. }
  12. repositories {
  13. mavenCentral()
  14. }
  15. dependencies {
  16. compile "io.ktor:ktor-server-netty:1.3.1"
  17. }
  1. Create a file named Dockerfile and copy the code block below into it.
  1. # Use the official gradle image to create a build artifact.
  2. # https://hub.docker.com/_/gradle
  3. FROM gradle:6.7 as builder
  4. # Copy local code to the container image.
  5. COPY build.gradle .
  6. COPY src ./src
  7. # Build a release artifact.
  8. RUN gradle clean build --no-daemon
  9. # Use the Official OpenJDK image for a lean production stage of our multi-stage build.
  10. # https://hub.docker.com/_/openjdk
  11. # https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds
  12. FROM openjdk:8-jre-alpine
  13. # Copy the jar to the production image from the builder stage.
  14. COPY --from=builder /home/gradle/build/libs/gradle.jar /helloworld.jar
  15. # Run the web service on container startup.
  16. CMD [ "java", "-jar", "-Djava.security.egd=file:/dev/./urandom", "/helloworld.jar" ]
  1. Create a new file, service.yaml and copy the following service definition into the file. Make sure to replace {username} with your Docker Hub username.
  1. apiVersion: serving.knative.dev/v1
  2. kind: Service
  3. metadata:
  4. name: helloworld-kotlin
  5. namespace: default
  6. spec:
  7. template:
  8. spec:
  9. containers:
  10. - image: docker.io/{username}/helloworld-kotlin
  11. env:
  12. - name: TARGET
  13. value: "Kotlin Sample v1"

Build and deploy this sample

Once you have recreated the sample code files (or used the files in the sample folder) you’re ready to build and deploy the sample app.

  1. Use Docker to build the sample code into a container. To build and push with Docker Hub, run these commands replacing {username} with your Docker Hub username:
  1. # Build the container on your local machine
  2. docker build -t {username}/helloworld-kotlin .
  3. # Push the container to docker registry
  4. docker push {username}/helloworld-kotlin
  1. After the build has completed and the container is pushed to docker hub, you can deploy the app into your cluster. Ensure that the container image value in service.yaml matches the container you built in the previous step. Apply the configuration using kubectl:
  1. kubectl apply --filename service.yaml
  1. Now that your service is created, Knative will perform the following steps:

  2. Create a new immutable revision for this version of the app.

  3. Network programming to create a route, ingress, service, and load balance for your app.

  4. Automatically scale your pods up and down (including to zero active pods).

  5. To find the URL for your service, use

  1. kubectl get ksvc helloworld-kotlin --output=custom-columns=NAME:.metadata.name,URL:.status.url
  2. NAME URL
  3. helloworld-kotlin http://helloworld-kotlin.default.1.2.3.4.sslip.io
  1. Now you can make a request to your app and see the result. Replace the URL below with the URL returned in the previous command.
  1. curl http://helloworld-kotlin.default.1.2.3.4.sslip.io
  2. Hello Kotlin Sample v1!

Remove the sample app deployment

To remove the sample app from your cluster, delete the service record:

  1. kubectl delete --filename service.yaml