api-k8s-exercise A simple Python API using Postgres and K8S. Local development of the python app docker run --name postgres-fastapi --rm -d -p 5432:5432 --env POSTGRES_PASSWORD=postgres postgres:13 cd app && uvicorn main:app --host 0.0.0.0 --port 8000