Overcoming the read-only configMap with Helm
With companies moving to microservices, it's becoming common to have a system scattered across multiple repositories. It's frequent to abstract common patterns and code into private repositories that are then included in each service. But using packages from private repos with Python can be tricky. This guide will guide you through the necessary steps.
Let’s talk about what it’s like to actually use Docker in your day-to-day.
Lacey didn't have the opportunity to work with Docker at her last job. In this tidbit she steps you through getting started with Docker for Django developers.
Smaller and faster Python 3.6.x images for you to take advantage of.
Sometimes you just need to run a command on a remote host with ssh and Python 3 without any real fuss. Here is the simplest way we have found to do that and retrieve the output.
Python's atexit handler is one of those things people should use more often. Some developers aren't even aware that it exists and that makes me sad.
What are Amazon availability zones anyway?
Getting your configuration from the system environment for your Python and/or Django apps is often the best way to provide security and flexibility. envparse makes it easy.
Have a URL but can't figure out what view it is supposed to use? Use resolve() to easily and quickly determine it just as Django does.