DEV Community

Cover image for Deploy Django on Kubernetes in a few clicks (without even Dockerizing your application)
Trevor Shim for Porter

Posted on • Originally published at blog.getporter.dev

Deploy Django on Kubernetes in a few clicks (without even Dockerizing your application)

This blog article is based on the documentation and example repository written by Porter's community member, jimcru21.

Kubernetes is a powerful container orchestrator that automates deployments, management, and scaling of containerized applications. Despite all these benefits of Kubernetes, however, there is typically a ton of overhead to it that is often not justified for simple applications. In this tutorial, we go over how to deploy Django applications on major cloud providers' Kubernetes offerings (e.g. EKS, GKE, DOKS) in a few clicks using Porter, without even having to containerize your applications.

What is Porter?

Porter is a Platform as a Service (PaaS) that runs in the user's own cloud. If you're familiar with Heroku/Vercel/Netlify, Porter brings the ease of use of those platforms into your own cloud, particularly into your own Kubernetes cluster. With Porter, you can deploy and scale Django applications on Kubernetes with minimal overhead without having to write a Dockerfile or YAML files.

Porter is open source. Check out the source code here.

Provisioning the Kubernetes Cluster

Before you can start deploying a Django application on Kubernetes, you must first provision a Kubernetes cluster. With Porter, it's possible to create a cluster on AWS, GCP, and Digital Ocean with a single click. Follow this guide to provision the cluster in the cloud provider of your choice.

Alternatively, you can also provision a cluster on your own and connect Porter to an existing cluster. These are the guides on how to create your own cluster for each cloud provider:

After you've created a Kubernetes cluster, you can connect to it via the Porter CLI per this guide.

Prepare Django Application

While it is not necessary to containerize your Django application to deploy it through Porter, you must follow these steps for a successful deployment.

  • Install django-allow-cidr (this is the middleware to enable the use of CIDR IP ranges in ALLOWED_HOSTS)
pip install django-allow-cidr
Enter fullscreen mode Exit fullscreen mode
  • Go to Django Settings and add os.environ.get in allowed host.
ALLOWED_HOSTS = os.environ.get("DJANGO_ALLOWED_HOSTS", default='127.0.0.1').split(" ")
Enter fullscreen mode Exit fullscreen mode
  • Add allowed CIDR networks. Put CIDR according to the Kubernetes kubelet CIDR. If you've provisioned the cluster through Porter, it is set to 10.99.0.0/16 by default. If you've provisioned the cluster yourself, visit your cloud console to find the CIDR.
ALLOWED_CIDR_NETS = os.environ.get("ALLOWED_CIDR_NETS", default='10.99.0.0/16').split(" ")
Enter fullscreen mode Exit fullscreen mode
  • Add django-allow-cidr middleware to the application.
MIDDLEWARE = [
  'allow_cidr.middleware.AllowCIDRMiddleware',
  #'django.middleware.security.SecurityMiddleware',
]
Enter fullscreen mode Exit fullscreen mode
  • Add Gunicorn.
pip install gunicorn
Enter fullscreen mode Exit fullscreen mode
  • Add static folder and add your HTML and CSS files. Locate static URL settings and add static file dirs below:
STATICFILES_DIRS = (
  os.path.join(BASE_DIR, 'static'),
)
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
Enter fullscreen mode Exit fullscreen mode
  • Add a Procfile to your repository. This is an alternative configuration to Dockerfile that uses Cloud Native Buildpacks, which have been popularized by Heroku. Porter uses the Procfile to build your images if a Dockerfile is not present.

  • Lastly, generate a requirements file.

pip freeze > requirements.txt
Enter fullscreen mode Exit fullscreen mode

Sample repository for the above configuration: https://github.com/jimcru21/porter-sample-django-non-docker

Deploy Django on Porter

  • Visit the Porter Dashboard. Click Web Service > Launch Template.

  • Name your application.
    image

  • When prompted for the deployment method, click Git Repository. Connect your GitHub account and select the repo you'd like to deploy from.
    image

  • Select the branch (main in the example below), then hit Continue.
    image
    image

  • Porter will read your Procfile and prompt you for the name of the process you'd like to run. In the example above, the process is named web. By default, Porter stores your build artifacts in the registry that was provisioned by Porter. If you've connected to an existing cluster, you can also connect an existing container registry to Porter using our CLI per this guide.

  • In Additional settings, specify the container port that you use for gunicorn in the Procfile (in the example above, this is set to 8989). You can also configure custom domain per this guide.

  • From the Environment tab, set DJANGO_ALLOWED_HOSTS that we specify on Django settings. Then input the domain you have set for your application.
    image

  • Click Deploy then wait for buildpack to finish and push to porter. Porter writes a GitHub Actions file to your repository for Continuous Integration. You can check the build progress on your GitHub repository under the Action tab.

Done!

Kubernetes can be a mountain to climb for newcomers, but many developers are drawn to its benefits despite the steep learning curve. Porter is a tool that eases that learning process to the extent that the user doesn't have to learn anything about Kubernetes, or even Docker, to get started.

If you have any questions about this tutorial, join our discord community and ask away!

Top comments (2)

Collapse
 
checor profile image
Sergio U

Thanks for this tutorial! I will check out the tool.

The "without dockerinzing" your app, does this means that Porter dockerizes it for you under the hood, based on the Procfile?

Collapse
 
shimtrevor profile image
Trevor Shim

Thanks for reading! Yes, we use Buildpacks (buildpacks.io) to Dockerize it under the hood.