Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 441 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 441 Bytes

k8s-python-demo-app

Application for educational purposes. As a final result application needs to be containerised, kubernetised and then have helm-charts written for it

Preparations

Set-up environment

python3 -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt

Test if it works

. .venv/bin/activate

python3 cli.py
Hello world from CLI

flask run
curl localhost:5000
Hello, World!