This is a minimum example to show how to run a Kotlin based action on Apache OpenWhisk.
- Install the OpenWhisk CLI and set it up
./gradlew jar
wsk action create myKotlinAction build/libs/hello-kotlin.jar --main HelloKt
wsk action invoke myKotlinAction -r -p name "Markus"
- Happiness :)