Skip to content

Dockerised flask app configured to run on k8s as well

Notifications You must be signed in to change notification settings

azhar22k/docker-flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-flask

Dockerised flask app configured to run on k8s as well

Workflow

First clone this repo locally

The app can be run in 3 ways

Virtualenv

  1. Create and setup virtual environment
python3 -m venv venv;
source venv/bin/activate;
python3 -r requirements.text;
  1. Start App
python3 app.py;
  1. Stop and deactivate virtualenv
Ctrl+c
deactivate;

Docker

  1. Setup .env file (To see the values required check .env.sample)
  2. Start Service
docker-compose --compatibility up;
  1. Stop Service
Ctrl+c

Kubernetes

  1. Install kompose
brew install kompose;
  1. Convert docker-compose.yml to kubectl compatible files
kompose convert;
  1. Create a namespace for your resource
kubectl create namespace demo;
  1. Deploy your code to kubernetes
kubectl apply \
    -f env-configmap.yaml \
    -f docker-flask-deployment.yaml \
    -f docker-flask-service.yaml \
    -n demo;
  1. Get Inro About the App
kubectl get deployment,service,pods -n demo;
  1. Remove Everything
kubectl delete namespace demo;

About

Dockerised flask app configured to run on k8s as well

Topics

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published