Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Please select the 18.06 version since it is the latest version kubelet supported.

...

Code Block
languagebash
  $DOCKER_VERSION=18.06.1
  $ARCH=arm64
  $curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
  $sudo apt-key fingerprint 0EBFCD88
  $sudo add-apt-repository \
  "deb [arch=${ARCH}] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) \
  stable"

  $sudo apt-get update
  $sudo apt-get install -y docker-ce=${DOCKER_VERSION}~ce~3-0~ubuntu


Turn off all swap devices and files with: Disable swap on your machine

Code Block
languagebash
   $ sudo swapoff -a

...