gitextract_unfc2bei/ ├── .gitignore ├── LICENSE ├── README.md ├── articles/ │ ├── adopting-kubernetes-step-by-step.md │ └── deploying-kubernetes-applications-with-helm.md ├── ks1/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ └── index.js │ ├── config/ │ │ ├── dev.ks.deployment.yaml │ │ └── dev.ks.service.yaml │ ├── ks1.md │ └── web/ │ └── Dockerfile ├── ks2/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ └── index.js │ ├── config/ │ │ ├── dev.ks.deployment.yaml │ │ └── dev.ks.service.yaml │ ├── ks2.md │ └── web/ │ └── Dockerfile ├── ks3/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ └── index.js │ ├── config/ │ │ ├── dev.ks.deployment.yaml │ │ └── dev.ks.service.yaml │ ├── ks3.md │ ├── server/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ └── hello.py │ │ ├── requirements.txt │ │ └── server.py │ └── web/ │ └── Dockerfile ├── ks4/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ └── index.js │ ├── config/ │ │ ├── dev.ks.deployment.yaml │ │ └── dev.ks.service.yaml │ ├── ks4.md │ ├── server/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ └── hello.py │ │ ├── requirements.txt │ │ └── server.py │ └── web/ │ └── Dockerfile ├── ks5/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ └── index.js │ ├── ks/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── _helpers.tpl │ │ │ ├── ks.deployment.yaml │ │ │ └── ks.service.yaml │ │ └── values.yaml │ ├── ks5.md │ ├── server/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ └── hello.py │ │ ├── requirements.txt │ │ └── server.py │ └── web/ │ └── Dockerfile ├── ks6/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ └── index.js │ ├── ks/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── _helpers.tpl │ │ │ ├── ks.deployment.yaml │ │ │ └── ks.service.yaml │ │ └── values.yaml │ ├── ks6.md │ ├── server/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ └── hello.py │ │ ├── requirements.txt │ │ └── server.py │ └── web/ │ └── Dockerfile ├── ks7/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── Todo.css │ │ ├── Todo.js │ │ ├── index.css │ │ └── index.js │ ├── ks/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── _helpers.tpl │ │ │ ├── ks.deployment.yaml │ │ │ └── ks.service.yaml │ │ └── values.yaml │ ├── ks7.md │ ├── server/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ ├── hello.py │ │ │ └── todo.py │ │ ├── requirements.txt │ │ └── server.py │ └── web/ │ └── Dockerfile ├── ks8-1/ │ ├── app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src/ │ │ ├── App.css │ │ ├── App.js │ │ ├── Todo.css │ │ ├── Todo.js │ │ ├── index.css │ │ └── index.js │ ├── database/ │ │ ├── Dockerfile │ │ └── sql/ │ │ └── 1_create_todo_list.sql │ ├── ks/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── _helpers.tpl │ │ │ ├── ks.database.deployment.yaml │ │ │ ├── ks.database.service.yaml │ │ │ ├── ks.web.deployment.yaml │ │ │ └── ks.web.service.yaml │ │ └── values.yaml │ ├── ks8-1.md │ ├── server/ │ │ ├── Dockerfile │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ ├── hello.py │ │ │ └── todo.py │ │ ├── data/ │ │ │ ├── __init__.py │ │ │ └── database.py │ │ ├── requirements.txt │ │ └── server.py │ └── web/ │ └── Dockerfile └── ks8-2/ ├── app/ │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public/ │ │ ├── index.html │ │ └── manifest.json │ └── src/ │ ├── App.css │ ├── App.js │ ├── Todo.css │ ├── Todo.js │ ├── index.css │ └── index.js ├── ks/ │ ├── .helmignore │ ├── Chart.yaml │ ├── templates/ │ │ ├── _helpers.tpl │ │ ├── ks.database.service.yaml │ │ ├── ks.web.deployment.yaml │ │ └── ks.web.service.yaml │ └── values.yaml ├── ks8-2.md ├── server/ │ ├── Dockerfile │ ├── __init__.py │ ├── config.py │ ├── controllers/ │ │ ├── __init__.py │ │ ├── hello.py │ │ └── todo.py │ ├── data/ │ │ ├── __init__.py │ │ └── database.py │ ├── requirements.txt │ └── server.py └── web/ └── Dockerfile