aboutsummaryrefslogtreecommitdiff
path: root/system/k3s/README
blob: 03811f1b1937082917f94468b3bbb3f2a1e0044f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
k3s (Lightweight Kubernetes Distribution)

k3s is a lightweight, fully compliant Kubernetes distribution designed
for constrained environments such as edge computing, IoT devices, and
development setups. Created by Rancher Labs, k3s aims to simplify the
deployment and management of Kubernetes clusters.


The following can be used to start/stop k3s automatically:
/etc/rc.d/rc.k3s
  if [ -x /etc/rc.d/rc.k3s ]; then
    /etc/rc.d/rc.k3s start
  fi

/etc/rc.d/rc.local_shutdown
  if [ -x /etc/rc.d/rc.k3s ]; then
    /etc/rc.d/rc.k3s stop
  fi

By !red