As a Developer
I need to deploy the microservice to a local Kubernetes cluster.
So that the service can run in a scalable and production-like environment.
Details and Assumptions
The Kubernetes deployment should include a StatefulSet for PostgreSQL.
Add a health check endpoint (/health) to verify the microservice status.
Acceptance Criteria
Given the service is deployed to Kubernetes
When I access the `/health` endpoint
Then I should receive a 200 OK response with the status {"status": "OK"}.
As a Developer I need to deploy the microservice to a local Kubernetes cluster. So that the service can run in a scalable and production-like environment.
Details and Assumptions
Add a health check endpoint (/health) to verify the microservice status.
Acceptance Criteria