The Power of Kustomize and Helm

2023-07-22 | #helm #kubernetes #kustomize

Read on Medium If you are new to Kubernetes, one of the first things you might do after securing your cluster, setting up your local kubectl config and running “kubectl get nodes”, is google something like “How do I deploy an application into Kubernetes?”. Which might give you a tutorial result that tells you to run a command like this kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1 This works for your first introduction, but it won’t be long before you start asking yourself the question, “How do i manage deployments into a dev and prod kubernetes environment?

Continue reading 


Python with Docker Compose

2023-07-20 | #development #docker #python

Developers hate it, how this one simple trick will lead to rapid python development That’s it! What we’re going to do is setup a Python API running in docker-compose with hot reload enabled, meaning that any changes you make can be tested instantly once you save the file. If you’re familiar with Docker, you may be asking “How can the container know that I’m making a change to the code?”……Let me show you!

Continue reading 