Skip to content

Sample full stack ToDo application in Kotlin, packaged into Helm chart and ready to be deployed into Kubernetes cluster

Notifications You must be signed in to change notification settings

begray/kotlin-full-stack-example

Repository files navigation

To Do list application in Kotlin

All the commands below use FISH shell syntax

Build and run docker image locally

$ ./gradlew build

$ docker build -t todoapp:v0.0.1 .

$ docker run -m512M --cpus 2 -it -p 9090:9090 --rm todoapp:v0.0.1

Running inside minikube's VM

$ eval (minikube docker-env)

$ docker run -m512M --cpus 2 -it -p 9090:9090 --rm todoapp:v0.0.1

$ open http://(minikube ip):9090/

Installing Helm

$ brew install helm

$ helm init

About

Sample full stack ToDo application in Kotlin, packaged into Helm chart and ready to be deployed into Kubernetes cluster

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published