Assigning GitLab runners to a project

Following on from this post, Runners are added per project (unless they are shared). If you’re configuring a new project and haven’t created a new runner and assigned it to your  project, you’ll see this: Add a new runner per the steps in the previous article.

kubernetes : kubectl useful commands

Working through the interactive tutorial here is a good reference for kubectl usage. A few notes for reference: Copy master node config to a remote machine (from here): scp root@<master ip>:/etc/kubernetes/admin.conf . All of the commands if running on a remote machine can use the copied conf file by passing: –kubeconfig ./admin.conf Query nodes in the …

Setting up a Kubernetes cluster across 2 virtualized CentOS nodes

tl:dr – I tried installing Kubernetes from scratch on Fedora Atomic hosts, but couldn’t get it working. I captured the steps I went through up until the point where I got stuck, but thinking there has to be an easier way, I found kubeadm and successfully used that to get a cluster up and running …