├── .gitignore ├── README.md ├── app ├── .dockerignore ├── Dockerfile ├── README.md ├── app.py ├── requirements.txt ├── static │ └── main.css └── templates │ └── index.html ├── k8s-files ├── lab-demo.yaml.tpl └── load-balancer.yaml └── terraform ├── README.md ├── database.tf ├── main.tf ├── output.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.idea 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/README.md -------------------------------------------------------------------------------- /app/.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | !app.py 3 | !requirements.txt 4 | !static 5 | !templates 6 | -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/app/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/app/app.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/app/static/main.css -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /k8s-files/lab-demo.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/k8s-files/lab-demo.yaml.tpl -------------------------------------------------------------------------------- /k8s-files/load-balancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/k8s-files/load-balancer.yaml -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/database.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/terraform/database.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/terraform/output.tf -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golodnyj/practicum-k8s/HEAD/terraform/variables.tf --------------------------------------------------------------------------------