Kubernetes playground – How to setup stateless workloads
In the last post, we went through creating our home lab Kubernetes cluster and deploying the Kubernetes dashboard. In this post we are going to create a couple more stateless applications. What is BusyBox Several stripped-down Unix tools in a single executable file. Commonly referred to as the “Swiss army knife tool in Linux distributions” I began by just testing this following a walkthrough tutorial but then later realised that this is a great tool for troubleshooting within your Kubernetes pod. You can find out more information here on Docker Hub. kubectl run myshell –rm -it –image busybox – sh Some things you didn’t knowRead More →