Dockerised flask app configured to run on k8s as well
First clone this repo locally
The app can be run in 3 ways
- Create and setup virtual environment
python3 -m venv venv;
source venv/bin/activate;
python3 -r requirements.text;
- Start App
python3 app.py;
- Stop and deactivate virtualenv
Ctrl+c
deactivate;
- Setup
.env
file (To see the values required check .env.sample) - Start Service
docker-compose --compatibility up;
- Stop Service
Ctrl+c
- Install kompose
brew install kompose;
- Convert
docker-compose.yml
tokubectl
compatible files
kompose convert;
- Create a namespace for your resource
kubectl create namespace demo;
- Deploy your code to kubernetes
kubectl apply \
-f env-configmap.yaml \
-f docker-flask-deployment.yaml \
-f docker-flask-service.yaml \
-n demo;
- Get Inro About the App
kubectl get deployment,service,pods -n demo;
- Remove Everything
kubectl delete namespace demo;