Initial installation steps:
- Download Raspbian Lite image.
- Download and install balenaEtcher
- Image SD card with Raspbian Lite
- Enable SSH (for Buster)
touch /Volumes/boot/ssh
- Configure WIFI
vim /Volumes/boot/wpa_supplicant.conf
Then add the following:
country=US # Your 2-digit country code
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
network={
ssid="YOUR_NETWORK_NAME"
psk="YOUR_PASSWORD"
key_mgmt=WPA-PSK
}
- Unmount SD card
sudo diskutil unmount /Volumes/boot
- Insert SD card in Pi and power up
- SSH using pi:raspberry
- Change default password
- Install VIM
sudo apt-get install vim
- Change the hostname
sudo vim /etc/hostname
- Reboot
- Setup DHCP reservation on router
- Add host to local /etc/hosts file
sudo vim /etc/hosts
and change /etc/hostssudo vim /etc/hosts
:
192.168.1.70 pi-kube-master
192.168.1.71 pi-kube-node01
192.168.1.72 pi-kube-node02
192.168.1.73 pi-kube-node03
- Copy local SSH key to pi
ssh-copy-id [PI_HOSTNAME_OR_IP]
- Generate an ssh key
ssh-keygen
- Push key to other nodes
ssh-copy-id pi@[NODE_HOSTNAME]
- Setup CPU for containers
vim
and then addcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory
to the end of the first line in/boot/cmdline.txt
- Reboot
- Install k3s
curl -sfL https://get.k3s.io | sh -
- Validate the server is up and running
sudo systemctl status k3s
- Copy the server token
sudo cat /var/lib/rancher/k3s/server/node-token
- Copy out the k3s.yaml file from
/etc/rancher/k3s/k3s.yaml
to your local system. Change the "server:" address from localhost to the remote clusters IP address and save into the.kube/config
file
- Setup CPU for containers
vim
and then addcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory
to the end of the first line in/boot/cmdline.txt
- Reboot
- Setup environmental variables for k3s agent installation:
export K3S_URL="https://[MASTER_IP_ADDRESS]:6443"
export K3S_TOKEN="[MASTER_SERVER_TOKEN]"
- Install k3s
curl -sfL https://get.k3s.io | sh -
- List out nodes
sudo kubectl get node -o wide
- Configure the eth0 interfaces with addresses referened above by using the
/etc/dhcpcd.conf
file to statically assign IP addresses based on fallback profiles. - Use the following install command for the k3s master node
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="server --advertise-address=192.168.1.70 --bind-address=192.168.1.70" sh -
the k3s-uninstall.sh
and k3s-agent-uninstall.sh
commands don't completely clean up all left over files... use sudo rm -rf /etc/rancher/ /var/lib/rancher/ /run/k3s/
to completely clean up all of the files.
- Pull down the latest recommended file for the web dashboard. Example
wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc5/aio/deploy/recommended.yaml
- Change the image in the deployment to use the ARM image. Example:
image: kubernetesui/dashboard:v2.0.0-rc5
toimage: kubernetesui/dashboard-arm:v2.0.0-rc5
- Apply the deployment
kubectl apply -f recommended.yaml
- Create a service account for accessing the dashboard
kubectl create serviceaccount dashboard -n default
- Create a role binding for the service account to the new role
kubectl create clusterrolebinding dashboard-admin -n default --clusterrole=cluster-admin --serviceaccount=default:dashboard
- Run the following to get the token for the new dashboard admin service account
kubectl get secret $(kubectl get serviceaccount dashboard -o jsonpath="{.secrets[0].name}") -o jsonpath="{.data.token}" | base64 --decode
- Run
kubectl proxy
to create a local proxy for the web ui - Login using the token obtained above.
-k3s Github Page -Pi Dramble -https://blog.alexellis.io/test-drive-k3s-on-raspberry-pi/