This is a microservice application built using Flask and deployed on Kubernetes. It is designed to demonstrate how to build and deploy microservices on a Kubernetes cluster.
To install and run the application on your Kubernetes cluster, follow these steps:
- Clone this repository to your local machine.
- Navigate to the project root directory.
- Create a Kubernetes deployment and service by running the following command:
kubectl apply -f kubernetes.yaml
- Verify that the deployment and service have been created successfully by running the following command:
kubectl get deployments,services
- If everything is working properly, you should see the name of your deployment and service listed in the output.
To use the microservice, you can send HTTP requests to the service's endpoint. Here's an example request:
curl http://<service-ip>:<service-port>/tasks
This should return a JSON response with a greeting message.
If you'd like to contribute to this project, please fork the repository and create a new branch. Pull requests are welcome!
This project is licensed under the MIT License - see the [LICENSE.md]