Integration between Django and Kubernetes.
Project description
django-k8s
Integration between Django and Kubernetes.
Caching
Service discovery for Memcached. Admittedly this will work with any service discovery that uses multiple A records for memcached servers. This allows the memcached client to properly distribute keys amongst memcached servers. AWS ElasticCache as well as Kubernetes and others are compatible with this scheme.
If an error is received when trying to access a memcached server, DNS resolution is performed again (refreshing server list). This allows memcached servers to be added or removed without restarting the application.
More information on this approach is provided below.
https://cloud.google.com/solutions/deploying-memcached-on-kubernetes-engine
Given Memcached deployed to Kubernetes with the following command:
helm install stable/memcached --name mycache --set replicaCount=3
You could configure your application like this:
CACHES = {
'default': {
'BACKEND': 'django_k8s.cache.backends.Memcached',
'HOST': environ.get('DJANGO_CACHE_HOST', None),
},
}
Migrations
One convenient way to handle Django migrations in Kubernetes is using a Job. However Django applications expect the database to be available and migrated on startup. Therefore some coordination is necessary. The application containers should wait for the migration job to complete before starting up.
This package provides a management command that polls the database to check for two conditions:
That the database server is reachable.
That all migrations have been applied.
It can optionally wait for both of these conditions to be true. An exit code of 0 indicates success. This management command could be part of your entrypoint, ensuring no Django application is started until these conditions are met.
This technique is compatible with systems other than Kubernetes, the author has used it with Docker Compose as well.
$ python manage.py checkmigrations
Migrations complete.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-k8s-0.2.2.tar.gz
.
File metadata
- Download URL: django-k8s-0.2.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 113a05eefce3cb2a4ef3d08537ddd4ec3a7606b2d91e7a30e4af67572b2da243 |
|
MD5 | aaaff26cb9be9142dabcbdc59704320a |
|
BLAKE2b-256 | b9ec5bef2e6350def50acac9613155bc716388adc9b11cf00bf45f5008a728fa |