├── .github └── workflows │ ├── build.yaml │ ├── rollout.yaml │ └── test-django.yaml ├── .gitignore ├── LICENSE ├── README.md ├── django-k8s.code-workspace ├── docker-compose.yaml ├── k8s ├── apps │ ├── django-k8s-web.yaml │ └── iac-python.yaml └── nginx │ ├── deployment.yaml │ └── service.yaml └── web ├── .dockerignore ├── Dockerfile ├── build-push-notes.md ├── collectstatic.sh ├── deployment-guide.md ├── django_k8s ├── __init__.py ├── asgi.py ├── cdn │ ├── __init__.py │ ├── backends.py │ └── conf.py ├── settings.py ├── urls.py └── wsgi.py ├── entrypoint.sh ├── manage.py ├── migrate.sh ├── posts ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── requirements.txt ├── staticfiles-cdn └── blank.txt └── staticfiles └── blank.txt /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/.github/workflows/rollout.yaml -------------------------------------------------------------------------------- /.github/workflows/test-django.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/.github/workflows/test-django.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /django-k8s.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/django-k8s.code-workspace -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /k8s/apps/django-k8s-web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/k8s/apps/django-k8s-web.yaml -------------------------------------------------------------------------------- /k8s/apps/iac-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/k8s/apps/iac-python.yaml -------------------------------------------------------------------------------- /k8s/nginx/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/k8s/nginx/deployment.yaml -------------------------------------------------------------------------------- /k8s/nginx/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/k8s/nginx/service.yaml -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/.dockerignore -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/build-push-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/build-push-notes.md -------------------------------------------------------------------------------- /web/collectstatic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/collectstatic.sh -------------------------------------------------------------------------------- /web/deployment-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/deployment-guide.md -------------------------------------------------------------------------------- /web/django_k8s/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/django_k8s/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/django_k8s/asgi.py -------------------------------------------------------------------------------- /web/django_k8s/cdn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/django_k8s/cdn/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/django_k8s/cdn/backends.py -------------------------------------------------------------------------------- /web/django_k8s/cdn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/django_k8s/cdn/conf.py -------------------------------------------------------------------------------- /web/django_k8s/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/django_k8s/settings.py -------------------------------------------------------------------------------- /web/django_k8s/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/django_k8s/urls.py -------------------------------------------------------------------------------- /web/django_k8s/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/django_k8s/wsgi.py -------------------------------------------------------------------------------- /web/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/entrypoint.sh -------------------------------------------------------------------------------- /web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/manage.py -------------------------------------------------------------------------------- /web/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/migrate.sh -------------------------------------------------------------------------------- /web/posts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/posts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/posts/admin.py -------------------------------------------------------------------------------- /web/posts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/posts/apps.py -------------------------------------------------------------------------------- /web/posts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/posts/migrations/0001_initial.py -------------------------------------------------------------------------------- /web/posts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/posts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/posts/models.py -------------------------------------------------------------------------------- /web/posts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/posts/tests.py -------------------------------------------------------------------------------- /web/posts/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Django-Kubernetes/HEAD/web/requirements.txt -------------------------------------------------------------------------------- /web/staticfiles-cdn/blank.txt: -------------------------------------------------------------------------------- 1 | blank on purpose -------------------------------------------------------------------------------- /web/staticfiles/blank.txt: -------------------------------------------------------------------------------- 1 | blank on purpose --------------------------------------------------------------------------------