andreaseg / k8s

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kubernetes Cluster on Raspberry PI

Uses k3s and podman.

Setup

Installing k3s

curl -sfL https://get.k3s.io | sh -

Installing podman

Installation instructions

Local registry

podman run --privileged -d \
  --name registry \
  -p 5000:5000 \
  -v /var/lib/registry:/var/lib/registry \
  --restart=always \
  registry:2
mkdir -p /var/lib/registry
sudo chmod a+rw /var/lib/registry

Add the follwoing

[registries.insecure]
registries = ['localhost:5000']

to /etc/containers/registries.conf

About


Languages

Language:HTML 47.0%Language:Makefile 44.0%Language:Dockerfile 9.0%