(pronounced rackets - /ˈrækɪts/)
Stand up a Raspberry Pi based Kubernetes cluster with Ansible
rak8s is maintained by Chris Short and a community of open source folks willing to help.
- Raspberry Pis are rad
- Ansible is awesome
- Kubernetes is keen
ARM is going to be the datacenter and home computing platform of the future. It makes a lot of sense to start getting used to working in its unique environment.
Also, it's cheaper than a year of GKE. Plus, why not run Kubernetes in your home?
- Raspberry Pi 3 (3 or more)
- Class 10 SD Cards
- Network connection (wireless or wired) with access to the internet
-
Raspbian Lite (installed on each Raspberry Pi)
-
Raspberry Pis should have static IPs
- Requirement for Kubernetes and Ansible inventory
- You can set these via OS configuration or DHCP reservations (your choice)
-
Ability to SSH into all Raspberry Pis and escalate privileges with sudo
- The pi user is fine
- Please change the pi user's password
-
Ansible 2.7.1 or higher
-
kubectl
should be available on the system you intend to use to interact with the Kubernetes cluster.- If you are going to login to one of the Raspberry Pis to interact with the cluster
kubectl
is installed and configured by default on the master Kubernetes master. - If you are administering the cluster from a remote machine (your laptop, desktop, server, bastion host, etc.)
kubectl
will not be installed on the remote machine but it will be configured to interact with the newly built cluster oncekubectl
is installed.
- If you are going to login to one of the Raspberry Pis to interact with the cluster
- Setup SSH key pairs so your password is not required every time Ansible runs
git clone https://github.com/rak8s/rak8s.git
Modify the inventory
file to suit your environment. Change the names to your liking and the IPs to the addresses of your Raspberry Pis.
If your SSH user on the Raspberry Pis are not the Raspbian default pi
user modify remote_user
in the ansible.cfg
.
ansible -m ping all
This may fail to ping if you have not setup SSH keys and only configured your Pi's with passwords
ansible-playbook cluster.yml
ansible-playbook shutdown.yml
Test your Kubernetes cluster is up and running:
kubectl get nodes
The output should look something like this:
NAME STATUS ROLES AGE VERSION
pik8s000 Ready master 2d v1.9.1
pik8s001 Ready <none> 2d v1.9.1
pik8s002 Ready <none> 2d v1.9.1
pik8s003 Ready <none> 2d v1.9.1
pik8s005 Ready <none> 2d v1.9.1
pik8s004 Ready <none> 2d v1.9.1
rak8s installs the non-HTTPS version of the Kubernetes dashboard. This is not recommended for production clusters but, it simplifies the setup. Access the dashboard by running:
kubectl proxy
Then open a web browser and navigate to: http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/
Did something go wrong? Nodes fail some process or not joined to the cluster? Break Docker Versions with apt-update?
Try the process again from the beginning:
ansible-playbook cleanup.yml
Wait for everything to run and then start again with:
ansible-playbook cluster.yml
Make sure to remove .cache if your ip addresses change.
If you run into any problems please join our welcoming Discourse community. If you find a bug please open an issue and pull requests are always welcome.
rak8s (pronounced rackets - /ˈrækɪts/)
Coined by Kendrick Coleman on 13 Jan 2018
These playbooks were assembled using a handful of very helpful guides:
- K8s on (vanilla) Raspbian Lite by Alex Ellis
- Installing kubeadm
- kubernetes/dashboard - Access control - Admin privileges
- Install using the convenience script
A very special thanks to Alex Ellis and the OpenFaaS community for their assitance in answering questions and making sense of some errors.
- Raspberry Pi Kubernetes Cluster - chrisshort.net
- DevOps'ish 060: WTF Google, SRE in a Serverless World, DevOps Requires Rethinking Norms, Kubernetes...
- 071: Susan Fowler, Open Offices, Tech Debt, Cloud Native Serverless, Kubernetes, and More
- 073: DevOps Hiring Guide, RIP RTFM, BGP & DNS, Kubernetes, GitLab, and More
- Building A Kubernetes Raspberry Pi3 Cluster With Rak8s And Ansible
- WOA Issue 37 - Armv8 Collaboration
- 7 Raspberry Pi projects to explore
- Running a Raspberry Pi cluster, a few months after - Alexandre Chaintreuil