Skip to content

Instantly share code, notes, and snippets.

View maximilianwollnik's full-sized avatar

Maximilian Wollnik maximilianwollnik

View GitHub Profile
@maximilianwollnik
maximilianwollnik / installK8sOnRPi.sh
Last active February 9, 2020 14:37
K8s version 1.12.1 can't be installed on a RPi - trying older versions of kubeadm and docker-engine
#!/bin/sh
# curl -sLSf $LINK | sudo sh
KUBERNETES_VERSION=1.9.11-00
PI_IP=192.168.0.14
curl -sSL get.docker.com | sh && \
sudo usermod pi -aG docker
sudo dphys-swapfile swapoff && \