K3 for Running Kubernetes on Raspberry pi

Rachers K3 Github Repository describes K3 as a Lightweight Kubernetes. Easy to install, half the memory, all in a binary less than 40mb. These characteristics make K3 ideal for in use in ARM deployments like Raspberry Pi. I’ve been using K3 at home for several weeks now and have found it to be a suitable replacement for a full Kubernetes deployment. In my experience installation can be performed with simple scripting and takes about two minutes....

January 5, 2020

Adding DNS entries to Pihole

Adding static DNS entries to Pihole can be accomplished by adding entries to the Pihole server’s hosts file /etc/hosts. For example: 192.168.1.100 pihole.yourdomain 192.168.1.100 blog.yourdomain 192.168.1.101 foo.yourdomain If you’ve deployed Pihole within a Kubernetes cluster then Kubernetes Hosts Aliases can be used to add static DNS entries to Pihole. hostAliases: - ip: "192.168.1.100" hostnames: - "pihole.yourdomain" - "blog.yourdomain" - ip: "192.168.1.101" hostnames: - "foo.yourdomain"

January 4, 2020