Differences between revisions 1 and 2
Revision 1 as of 2021-11-09 08:15:24
Size: 613
Editor: PieterSmit
Comment:
Revision 2 as of 2022-02-06 00:08:20
Size: 642
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
----
CategoryK8sKubernetes

k8s/k3s/k3d

  • k3s is light weight kubernetes from Rancher, that combines most of the k8s management components into singe go binary.
    • This allows for low memory footprint and makes it usable on small systems e.g. Raspbery Pi4
  • k3d is docker version of k3s, great for local testing with multiple masters and workers.
    • One gotcha (2021-11) is that on btrfs, it needs access to /dev/mapper
    • After installing k3d and docker, Run with

      k3d cluster create test -s 3 -a 3 -v /dev/mapper:/dev/mapper
    • Then the normal kubectl can be used to operate the docker k8s cluster :)


CategoryK8sKubernetes

k8s/k3s/k3d (last edited 2022-03-20 02:20:48 by PieterSmit)