Skip to content

findthefunction/microservices-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Microservices: Python + Flask => Dockerized ::: Deployed => Kubernetes + Helm

  1. Create virtual environment python -m venv microservices-python

image

  1. Install Flask pip install Flask
  2. Run pip list to inspect packages

image

  1. Flask application / Jinja templating
  2. Freeze Dependancies pip freeze > requirements.txt
  3. Build Docker image When building image I encountered a stubborn error related to testing on local host. standard build command: docker build -t webapp:1.0 returned NewConnectionError. Solution: docker build --network=host -t webapp:1.0 . https://docs.docker.com/network/host/
  4. Write Docker Compose file
  5. Write Kubernetes Manifest files
  6. Create HELM chart

About

Microservices: Python + Flask => Dockerized + Deployed => Kubernetes + Helm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published