Hello World - Kotlin

    Do the following steps 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:

    • A Kubernetes cluster with Knative installed and DNS configured. Follow the installation instructions if you need to create one.
    • installed and running on your local machine, and a Docker Hub account configured (we’ll use it for a container registry).
    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 following code block 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. }
    1. Switch back to directory

    1. Create a file named Dockerfile and copy the following code block 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. kind: Service
    2. metadata:
    3. namespace: default
    4. spec:
    5. template:
    6. spec:
    7. containers:
    8. - image: docker.io/{username}/helloworld-kotlin
    9. env:
    10. - name: TARGET
    11. value: "Kotlin Sample v1"

    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. Now that your service is created, Knative will perform the following steps:

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

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

    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 following URL with the URL returned in the previous command.
    1. curl http://helloworld-kotlin.default.1.2.3.4.sslip.io

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

    1. kubectl delete --filename service.yaml