Skip to content

Instantly share code, notes, and snippets.

@mkurtay
mkurtay / k82-pi.sh
Created February 16, 2019 19:58
Setup k8s on Raspberry Pi
#!/bin/sh
# Install Docker
curl -sSL get.docker.com | sh && \
sudo usermod pi -aG docker
# Disable Swap
sudo dphys-swapfile swapoff && \
sudo dphys-swapfile uninstall && \
sudo update-rc.d dphys-swapfile remove