Skip to content

Latest commit

 

History

History
108 lines (87 loc) · 4.09 KB

README.md

File metadata and controls

108 lines (87 loc) · 4.09 KB

http

Development

# runs tests
./gradlew :modules:http:test

# starts dependencies
docker-compose -f local/docker-compose-http.yml up -d
docker-compose -f local/docker-compose-http.yml logs --follow
docker-compose -f local/docker-compose-http.yml down -v

# starts server
./gradlew :modules:http:run

# healthcheck
curl http://localhost:8080/status
# openapi spec
curl -sS http://localhost:8080/swagger/documentation.yaml | yq
# version
curl -H 'X-My-Version: foo' http://localhost:8080/version
# list
curl -sS http://localhost:8080/user | jq
# get
curl -v http://localhost:8080/user/e5c931fd-2ed0-4af7-bf17-a53d2d3daa66
# add
curl -sS http://localhost:8080/user -H 'Content-Type: application/json' --data '{"name":"foo","age":42}' | jq
# upload
curl -i -H "Content-Type: application/x-www-form-urlencoded" --data-binary "@README.md" http://localhost:8080/file/upload
# download (-J allows remote header filename)
curl -sS -J http://localhost:8080/file/download-archive -o my-archive.zip

# invokes api
./gradlew :modules:http:run-client --args="arg_user"
./gradlew :modules:http:run-client --args="arg_upload"
./gradlew :modules:http:run-client --args="arg_download"

OpenAPI, Swagger UI and Redoc

Deployment

# publishes local image
./gradlew :modules:http:publishImageToLocalRegistry

# publishes remote image
./gradlew :modules:http:publishImage

# starts test container
docker run --rm \
  --name kotlin-fun-http \
  --network http-server_default \
  -e POSTGRES_URL="jdbc:postgresql://postgres:5432/example_db" \
  -p 8080:8080 \
  niqdev/kotlin-fun-http
# creates chart
mkdir -p helm-charts && helm create helm-charts/kotlin-fun-http

# verifies chart
helm template helm-charts/kotlin-fun-http --debug > tmp-app.yaml
  • argo-cd app deployed on Kubernetes
# port forward locally
kubectl --kubeconfig clusters/do-template-kubeconfig.yaml -n examples \
  port-forward svc/niqdev-kotlin-fun-http-main-v0-1-0 8888:8080

# verifies service
curl http://localhost:8888/status

# POSTGRES_PASSWORD=pgpassword
kubectl --kubeconfig clusters/do-template-kubeconfig.yaml -n examples \
  exec -it sts/kotlin-fun-database -c kotlin-fun-database -- \
  psql -h localhost -U postgres --password -p 5432 example_db

# show tables
\dt