SlackBuildsOrg/system/k3s
Pouria Rezaei ee282cc713
system/k3s: Updated to 1.30.3.1.
Signed-off-by: Pouria Rezaei <Pouria.rz@outlook.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-08-08 22:00:47 +07:00
..
config
doinst.sh
k3s.info system/k3s: Updated to 1.30.3.1. 2024-08-08 22:00:47 +07:00
k3s.SlackBuild system/k3s: Updated to 1.30.3.1. 2024-08-08 22:00:47 +07:00
README
slack-desc

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