How to set up a kubernetes Cluster

What is kubernetes and why should I need it? Simply put, kubernetes is a tool for managing computing resources. It does this very efficently by abstracting your hardware into one (or more, if you like) big computing resource and therefore highly efficient use of your hardware with very little overhead unlike Virtual Machines for example …

How to install and connect a gitlab runner

What’s a gitlab runner and what do I need it for? gitlab runners are worker nodes that can be connected to gitlab to run jobs on.I use the docker executor a lot to build images, but you can run any sort of jobs on them like shell/$language scripts for testing, building, etc., whatever you configure …